// JavaScript Document
//JavaScript Document
/*
jQuery(document).ready(function(){
	jQuery('ul.sf-menu').superfish();
})*/

/*var menuShown;
jQuery(document).ready(function(){
	jQuery("#navigation ul li a").hover(function() {
		jQuery(this).parent().find("ul").show();
		jQuery(this).parent().hover(function() {
	}, function(){
		menuShown=jQuery(this).parent().find("ul").hide();
	 //window.setTimeout("hideMenu()",500)
		});
	}); 
})*/

//to keep fade effect in highlight's teaser image
jQuery(document).ready( 
    function(){    
   //  jQuery('#header-image .item').innerfade({ speed: 5000, timeout: 10000, type: 'sequence', containerheight: '177px' }); 
     } 
   ); 

//enable coloreffect
jQuery(document).ready(function(){
	function updateDownloadLink(){
		_src=jQuery("#cboxPhoto").attr('src');
		var splitImgName=_src.split("imgurl");
		var imgName=splitImgName[1].substring(1,splitImgName[1].length);
		var onlyImgArr=imgName.split("images/");
		var onlyImgPath="/images/"+onlyImgArr[1];
		var downloadLink="<a href='/system/download.php?fullurl="+onlyImgPath+"'>Download</a>";
		jQuery("#cboxTitle").html(downloadLink);
	}
	
	jQuery(".gallery-big-image").colorbox({onComplete:updateDownloadLink});
});

jQuery(document).ready(function(){
		jQuery("#breadcrumb li:nth-child(4)").hide();
		jQuery("#breadcrumb li:nth-child(5)").hide();
});
