//animated header

    $(document).ready(function(){
        
        
         $('.holder').hover(
            function () {
            $(this).removeClass('.notactive');	
            $('.notactive').stop().animate({'width':'295px'},400); 
            $(this).find('img').stop().animate({'top':'-145px'},400); 
            $(this).stop().animate({'width':'295px'},400); 
            $(this).find('span').css({'background-color':'#000'}); 
            $(this).find('.text').fadeIn(300); 
          },
            function () {
                $('.notactive').stop().animate({'width':'295px'},400); 
                $(this).addClass('.notactive');	
                $(this).find('.text').hide();
                $(this).find('img').stop().animate({'top':'0px'},500); 
                $(this).stop().animate({'width':'295px'},400);
                $(this).find('span').css({'background-color':'#333', 'color':'#dedede'}); 
             
          });
         
         
        
    });
	
//colorbox

		$(document).ready(function(){
			//Examples of how to assign the ColorBox event to elements
			$("a[rel='cb']").colorbox({transition:"fade"});
		});
