$(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(){
		$(this)
		.find('img')
		.animate({opacity:'0.5'},100)	
		.animate({opacity:'1'},300)	
	},function(){})
});


$(document).ready(function(){
	$('.menu .submenu').hide().find('.activ').parent().show()
	$('.submenu').parent().find('a:not(".submenu li a")')
	.click(function(){
		$(this).parent().find('.submenu').slideToggle()
		return false
	})
});



