$(document).ready(function(){
					
//for the fading buttons
$(".fademe").hover(function(){
$(this).stop().fadeTo(250, 0);
},function(){
$(this).stop().fadeTo(250, 1);
});


$('#gallery_part1,#gallery_part2,#gallery_part3').cycle({
	timeout: 10000,
	clip: 'zoom',
	random:  1,
	fx: 'fade'
});


//closing out the document ready function
});
