$(document).ready(function(){
		
	$(".table1 tr").mouseover(function() {$(this).addClass("over");}).mouseout(function() {$(this).removeClass("over");});
	$(".table1 tr:even").addClass("alt");	
		
	$("#content a").has('img').addClass("lbox");
	
	function anim(){
		$(this)
		.find('img')
		.animate({opacity:'0.5'},100)	
		.animate({opacity:'1'},100)	
	}
		
	$('#home_gallery a').hover(anim, function(){});
	$('.video a').hover(anim, function(){});	
	



	var val_inp = $('.s_inp').val();
	
	$('.s_inp').bind('focus', function(){ 
		if(this.value=val_inp) 
		this.value='';
		$(this).css({color: "#000"})
	})
	
	.bind('blur', function(){
		if(this.value=='') 
		this.value=val_inp;
		$(this).css({color: "#8b8a8a"})
		if(this.value!=val_inp){$(this).addClass("write")}
	}).attr('value', val_inp).addClass("write");
	
	
});

/*
$(window).load(function() {
	

});

*/
























