$(document).ready(function(){
	$('.menu_top span').each(function(){
		w1 = $(this).prev().width()								  
		$(this).width(w1+30)
	})						   
						   
	//tables style
	$(".table1 tr").mouseover(function() {$(this).addClass("over");}).mouseout(function() {$(this).removeClass("over");});
	$(".table1 tr:even").addClass("alt");
	
	//photo Gallery
	$('.img_link').hover(function(){$(this).find('img').animate({opacity:'0.5'},100).animate({opacity:'1'},300)},function(){})

	// img style
	$('.content>img,.content>p>img').addClass('cont_img')

	
	
	$('.menu_top a:not(".cur")').bind('mouseenter',function(){
		$(this).next().addClass('s_h')
	}).bind('mouseleave',function(){
		$(this).next().removeClass('s_h')
	})	
	$('.menu_top a.cur').next().addClass('s_h')

		
	
	
	/*-----------------------*/
	$(window).load(function(){
		//code	
	})
});
