
$(document).ready(function(){

// **************************
// INDEX THUMBNAIL HOVER
// **************************

$(".workThumbHover").fadeTo(1, 0.0); // Set to fade down to 30% when the page loads

$("span.workThumbHover").css({zIndex:"100"}); // Hide Image From CSS Fallback

$(".workThumbHover").hover(function(){

	if($.browser.msie){
		$(this).fadeTo(150, 0.7); // Set the opacity to 70% on hover for IE
	}
	
	else{
		$(this).animate({ 
			opacity: 1
		}, 400 );
	}
},function(){
		$(this).animate({ 
			opacity: 0
		}, 400 );
});

});

// **************************
// Supersized Background
// **************************

$(function(){
	$.fn.supersized.options = {  
		startwidth: 640,  
		startheight: 480,
		vertical_center: 1,
		slideshow: 0,
		navigation: 1,
		transition: 0, 
		pause_hover: 0,
		slide_counter: 1,
		slide_captions: 1,
		slide_interval: 3000  
	};
    $('#supersize').supersized(); 
});

// **************************
// Change Location Highlight
// **************************

function changePage(newLoc)
	{
		nextPage = newLoc.options[newLoc.selectedIndex].value
		if (nextPage != "")
	{
		document.location.href = nextPage
	}
}

function changePage2(newLoc)
	{
		nextPage = newLoc.options[newLoc.selectedIndex].value
		if (nextPage != "")
	{
		document.location.href = nextPage
	}
}