$(document).ready(function(){
	$("#menuCntr ul li ul").hide();
	
	$("#menuCntr ul li").hover(function(){
		$(this).find("ul").show();							 
	},function(){
		$(this).find("ul").hide();
	});
	
	$('#slider').anythingSlider({
		buildArrows         : false,      // If true, builds the forwards and backwards buttons
 		buildNavigation     : false,      // If true, buildsa list of anchor links to link to each panel
		startStopped		: false,
		autoPlay  		: true,
		stopAtEnd 		: false,
		delay               : 4000,      // How long between slideshow transitions in AutoPlay mode (in milliseconds)
	});
	
	$(".homeBlock .blockContents").hide();
	$(".overlay").hover(function(){
		$(this).next(".blockContents").animate({height:'toggle'});								    
	},function(){
		$(this).next(".blockContents").animate({height:'toggle'});
	});
	$(function() {
		$(".grid_4_2 a").attr("target","_blank");
	});
	
	// Use this example, or...
	$('a[rel*=lightbox]').lightBox(); // Select all links that contains lightbox in the attribute rel
	
});
