// JavaScript Document

function inputFocusBlur(obj,t) {
	$(obj).focus(function () {
        if($(this).attr('value')==t) {
			$(this).attr('value','')
		}
    });
	$(obj).blur(function () {
        if($(this).attr('value')=='') {
			$(this).attr('value',t)
		}
    });	
}

function photo_show(obj,f) {
	
	$('#'+obj).attr('src',f);

}

$(document).ready(function () {   
							
//	inputFocusBlur("#q",'Wpisz poszukiwana fraze');
//	inputFocusBlur("#search_name",'Wpisz nazwe');
//	inputFocusBlur("#newsletter_email",'Wpisz adres swój adres e-mail');

	$("#mid .product_list tbody tr td:last-child").css("padding-right","0");
	
	$('#top .bts li').hover(  
		function () {  
			//show its submenu  
			$('ul', this).slideDown(100);  
		},   
		function () {  
			//hide its submenu  
			$('ul', this).slideUp(100);           
		}  
	);
	
	$('#top .bts_en li').hover(  
		function () {  
			//show its submenu  
			$('ul', this).slideDown(100);  
		},   
		function () {  
			//hide its submenu  
			$('ul', this).slideUp(100);           
		}  
	);   
});  
