jQuery(document).ready(function() {
	
	
	$('.bump').hover(function () {
		
		$(".preview_image", this).stop().animate({top:"-45px"},{queue:false,duration:200});
	},
	function() {
	
		$(".preview_image", this).stop().animate({top:"0px"},{queue:false,duration:200});
	});

  // When a link is clicked  
    $("a.tab").click(function () {  
  
        // switch all tabs off  
        $(".active").removeClass("active");  
  
        // switch this tab on  
        $(this).addClass("active");  
  
        // slide all elements with the class 'content' up  
        //$(".content").hide();  
  
        // Now figure out what the 'title' attribute value is and find the element with that id.  Then slide that down.  
       // var content_show = $(this).attr("title");  
       // $("#"+content_show).show()
		
	    });  
  

		$('.bump').hover(function () {
		
		$(".preview_image", this).stop().animate({top:"-45px"},{queue:false,duration:200});
	});

$("img.a").hover(
function() {
$(this).stop().animate({"opacity": "0"}, "slow");
},
function() {
$(this).stop().animate({"opacity": "1"}, "slow");
});
 


  // When a link is clicked  
    $("a.contact_btn").click(function () {  
  
        // switch all tabs off  
        $(".active").removeClass("active");  
  
        // switch this tab on  
        $(this).addClass("active");  
  
        // slide all elements with the class 'content' up  
       $(".contact").hide();  
  
        // Now figure out what the 'title' attribute value is and find the element with that id.  Then slide that down.  
        var content_show = $(this).attr("title");  
        $("#"+content_show).show()
		
	    });  
	
	

  
  }); 

