$(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')
	$('.menu_top li a:first').addClass('menu_top_forst')
	$('.menu_top li a:last').addClass('menu_top_last')
	$('.but').wrap('<span class="but_left"></span>').addClass('png').parent().addClass('png')
	$('.but_link').wrap('<span class="but_link_left"></span>').addClass('png').parent().addClass('png')
	$('.but')
		.hover(function(){
		$(this).css({textShadow:'0 0 5px #fff'})
		},function(){
		$(this).css({textShadow:'0 0 0 #fff'})	
			}
		)
	$('h4').wrapInner('<span class="h4_otstup"></span>').prepend('<img src="/images/menu_top_left.gif" alt="" class="h4_left" />')
});