﻿ // Soul_Master custom bug fix for ticket #8052 
if ( jQuery.browser.msie && jQuery.browser.version >= 9 )
{
    jQuery.support.noCloneEvent = true
}

$(document).ready( function() {
//Show the control panel if we have a site actions menu present
    if (document.getElementById("siteactiontd").childNodes.length > 1) {
    	$("#controlPanel").css("display","block");
    }
	
	
	// lightbox
       $('#lightboxGallery a').lightBox({fixedNavigation:true});
	
	
});
