// JavaScript Document




$(document).ready(function() {
						  
//show border around link panels
$('.item').mouseover(function() {   

	$(this).addClass('highlighted');
	$(this).find('.item-caption').css({opacity: 0.9});
	$(this).find('.itle').addClass('blu');
	}).mouseout(function(){    
	$(this).removeClass('highlighted');
	$(this).find('.itle').removeClass('blu');
	$('.item-caption').css({opacity: 0.8});
});

//image titles
//Display the caption
	$('.item-caption').css({opacity: 0.8});

$('.itle').css({opacity: 1.0});

$('.item exp').click(function() {   

	$(this).addClass('highlighted');
	$(this).find('.item-caption').css({opacity: 0.9});
	$(this).find('.itle').addClass('blu');
	}).mouseout(function(){    
	$(this).removeClass('highlighted');
	$(this).find('.itle').removeClass('blu');
	$('.item-caption').css({opacity: 0.8});
});


$('.fp').hover(function(){
	$(".item-caption", this).stop().animate({top:'160px'},{queue:false,duration:160});
}, function() {
	$(".item-caption", this).stop().animate({top:'205px'},{queue:false,duration:160});
});

$('.lnk').hover(function(){
	$(".item-caption", this).stop().animate({top:'120px'},{queue:false,duration:160});
}, function() {
	$(".item-caption", this).stop().animate({top:'153px'},{queue:false,duration:160});
});


});


