$(document).ready(function(){

$("a.colorbox").colorbox();

$("#nav li a").hover(function(){
//	if($(this).parent().class)
//	$(this).css('background-position', '0 -42px');
},
function(){
//	$(this).css('background-position', '0 0');
});


$('.hover').fadeTo(1, 0.8); 

$('.hover').hover(function(){
   $(this).fadeTo("fast", 1.0); 
}, function(){
   $(this).fadeTo("fast", 0.8); 
});


$("#panorama").scrollview({
   grab:"images/openhand.cur",
   grabbing:"images/closedhand.cur"
 });

});
