/**
 * jquery SUB NAV
 * jonathan smith @ catchdigital.com
 * www.catchdigital.com
 */
$(document).ready(function(){
$(".thumbs a").fadeTo("fast", 0.45); // This sets the opacity of the thumbs to fade down to 45% when the page loads

$(".thumbs a").hover(function(){
$(this).fadeTo("fast", 1.0); // This should set the opacity to 100% on hover
},function(){
$(this).fadeTo("normal", 0.45); // This should set the opacity back to 60% on mouseout
});
});


/* horrid popup script*/
var win = null;
function NewWindow(mypage,myname,w,h,scroll){
LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
settings =
'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable'
win = window.open(mypage,myname,settings)
}