jQuery(function($){

$(".videoPop").colorbox({iframe:true, innerWidth:700, innerHeight:400});

var tempTitle;

$('.workGrid li a').hover (
	function() {
		tempTitle = $(this).attr('title');
		
		$(this).attr('title','');
		$(this).children(".title").stop().animate({"opacity":"0.8"}, 400);            
	},
	function(){
		$(this).children(".title").stop().animate({"opacity":"0"}, 400);
		$(this).attr('title',tempTitle);
	});

$('.workGrid li a').click(
        function() {
            $(this).attr('title', tempTitle);
            }
        );
	
	$('.navigation li a')
		.css( {backgroundPosition: "0px 0px"} )
		.mouseover(function(){
			$(this).stop().animate({backgroundPosition:"(250px 0)"}, {duration:400});
		})
		.mouseout(function(){
			$(this).stop().animate({backgroundPosition:"(0 0)"}, {duration:400});
		});
       
});
