// JavaScript Document

$(document).ready(function(){ 
	$("a[rel^='prettyPhoto']").prettyPhoto({ theme: 'dark_square' }); 

    $('#slideshow').cycle({
		fx: 		'fade',
		speed:		1800, 
   		timeout:	4000,
		pause:  	1
	});
	
	$('.tip').tipsy({title: 'alt', gravity: 'w'});

	$("TD.dropdown").hover( 
		function () { $("DIV.submenu", this).show(); }, 
		function () { $("DIV.submenu", this).fadeOut(); } 
	);  
});


