$(document).ready(function(){
$(".table1 tr").mouseover(function() {$(this).addClass("over");}).mouseout(function() {$(this).removeClass("over");});
$(".table1 tr:even").addClass("alt");
});

//photo Gallery
$(document).ready(function(){
	$('.img_link').hover(function(){
		var h_img = $(this).height()
		$(this)
		.find('img')
		.animate({opacity:'0.5'},100)	
		.animate({opacity:'1'},300)	
	},function(){})
});

// img style
$(document).ready(function(){
	$('.content>img').addClass('cont_img')
});

$(document).ready(function(){
	$('.menu_left li').not('.cur').hover(function(){
		$(this).find('img')
		.stop().animate({height:'5px',top:'8px'},300)
	},function(){
		$(this).find('img')
		.stop().animate({height:'19px', top:'1px'},200)
		})
});


// slide
$(document).ready(function(){
	$(window).load(function(){
		$('#slide1').css({visibility:'visible'})
	})
});

