$(document).ready(function(){
	base_url = "http://www.liming.hr";
	$("a[rel=subMenu]").hover(function(){
		$(".ctnSubMenu").slideUp(150);	
		$(this).parent().children(".ctnSubMenu").slideDown(300);
	});
	$("#headPicture, #ctnMain").hover(function(){
		$(".ctnSubMenu").slideUp(300);						   
	})
	
	$(".ctnRefBox").children("img, h3").click(function(){
		if($(this).parent().children("div.gallery").is(":hidden")){
			$(this).parent().children("div.gallery").slideDown(300);
		}
		else $(this).parent().children("div.gallery").slideUp(300);
		//$(this).parent().css({'background-color': '#000', 'border' : '#404040 2px solid'});
	});
    
    $(".ctnBBoxContentMiddle").scrollable({size:2, interval: 5000, loop: 'true', speed: 150, hoverClass: 'hover'});     	
	
});
