// Global Functions




$(document).ready(function() {
			
//image transition

$("#slider").easySlider({
		auto: true,
		continuous: false,
		nextId: "next",
		prevId: "prev"
	});


//hover buttons
	$('.btn a').hover(function(){
		$(this).children('img').stop(true, true).animate({'opacity': 0.5});
	   }, function(){
		$(this).children('img').stop(true, true).animate({'opacity': 1});
	   });
	



//LIGHTBOX
	
	$("ul.gallery a, a.zoom").lightBox();	
	
	$("ul.gallery li a").append("<img src='images/magnify.jpg' class='magnify' />");
	$(".magnify").css({"opacity": 0});
	
	$("ul.gallery li a").hover(function(){
		$(this).children(".magnify").stop(true, true).animate({"opacity": 0.77});						
	}, function(){
		$(this).children(".magnify").stop(true, true).animate({"opacity": 0});	
	});
















});//end jquery function
