/*Gallery Jquery code*/


	$(document).ready(function(){
				
			$("img.portfolio_image");
			$("img.portfolio_image").css("opacity","1");	
			
				$('img.portfolio_image').mouseenter(function(element) {
				$('img.portfolio_image').not(this).stop().animate({opacity: '1'});
				$(this).stop().animate({opacity: '0.3',duration:100});								
			});
			
				$('img.portfolio_image').mouseleave(function(element) {
				$('img.portfolio_image').stop().animate({opacity: '1',duration:50});	
			});
	
				
				$(".gallery:first a[rel^='portfolio']").portfolio({animationSpeed:'slow',theme:'light_square',slideshow:2000, autoplay_slideshow: false});
			});
