$(document).ready(function(){
						   
var trans = 0.7;						   

$(".special").mouseover (function () {$(this).find('.specialcontrols').show()});
$(".special").mouseout (function () {$(this).find('.specialcontrols').hide()});

$(".entryBox").mouseover (function () {$(this).find('.ShGbControlDelete').show()});
$(".entryBox").mouseout (function () {$(this).find('.ShGbControlDelete').hide()});

$(".gallerylink").fadeTo("fast", trans);
$(".gallerylink").mouseover(function(){$(this).fadeTo("fast", 1.0);});
$(".gallerylink").mouseout(function(){$(this).fadeTo("fast", trans);});


$("#lightbox a").lightBox();

 $('.slideshow').cycle({
		fx: 'fade',// choose your transition type, ex: fade, scrollUp, shuffle, etc...
		speed: 2000,
		timeout: 4000
	
	});

$("#slider").easySlider({
				//auto: true, 
			});



});

