/***************************************
****************************************
    GENERAL SCRIPTS
****************************************
***************************************/


/***************************************
    ON DOCUMENT LOAD
    ------------------------------------
    Any code between this function
    executs when the page had loaded
    fully.
***************************************/

jQuery(document).ready(function()
{     

	jQuery(".LSTPrMyCSS6 a[@href$=.pdf]").addClass("pdf");       //newsletter pdf link image

	jQuery("table tr:odd").addClass("odd");						//table odd rows

	jQuery("#globalnav ul ul li:last").css("border-bottom","none");

   
   
   
   
	/*****************************/
	/******  preload image   *****/
	/*****************************/
	/*if (document.images)
	{
		pic1= new Image();
		pic1.src="/images/image.gif";
		pic2= new Image();
		pic2.src="/images/image.gif";
	}*/

   
	jQuery("#gallerydrop select option").each(function() {
		if( window.location.search.indexOf(this.value) != -1) {		
			this.selected = "selected";
			return false;
		}
			
	});


	jQuery("#gallerydrop select").change(function() {
		var section = this.value;		
		section = (section == "None") ?  "" : "?section=" + section;		
		window.location.href = window.location.pathname + section;
	});


   
    
});

$(function() {
	$('#gallerycontainer a').lightBox({fixedNavigation:true});
});