$(document).ready(function(){
$(".table1 tr").mouseover(function() {$(this).addClass("over");}).mouseout(function() {$(this).removeClass("over");});
$(".table1 tr:even").addClass("alt");
$('.navigator a:first').css({backgroundPosition:'100% 13px'})
});

//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')
});
