$(document).ready(function() {
	
	// #flashTest1 is the selector   
	$('#home-flash').flash(   {   
		// test.swf is the flash document   
		swf: 'baner_2.swf',
		width: 820,
		height: 380}   ); 
	
	//ofarbenie localhost
	if (location.hostname == 'localhost')
		$('html').css("border", "1px solid red");
	
	//vyhladavanie search
	$("#search-string").val("zadejte hledaný výraz");
	$("#search-string").blur(function(){
		if($(this).val() == "")
		{
			$(this).val("zadejte hledaný výraz");
		}
	});
	
	
	$("#search-string").focus(function(){
		if($(this).val() == "zadejte hledaný výraz")
		{
			$(this).val("");
		}
	});
	
	$("#search-submit").click(function(){
		if ($("#search-string").val() == "zadejte hledaný výraz")
		{
			return false;
		}
	});
	
	$("#search-string").keypress(function(e){
		//if (e.keyCode=='13') 
			
	});
	
	//lightbox
	$("a[rel^='prettyPhoto'].form").prettyPhoto();
	$("a[rel^='prettyPhoto'][id^='email_']").prettyPhoto({theme: 'light_rounded'});
	$("a[rel^='prettyPhoto'].calc").prettyPhoto({theme: 'light_rounded'});
	$("a[rel^='prettyPhoto'].invoice").prettyPhoto({theme: 'light_orig_rounded'});
	

	
	
});

//tlac tipu
function print_article(id)
{
	    	sirka=screen.availWidth;
			lavo=sirka-600;
			lavox=lavo/2; 
			
			vyska=screen.availHeight;
			hore=vyska-600;
			horex=hore/2;

	  window.open(__WEB_BASE__ + "print_article.php?id=" + id,"",
	  "left="+lavox+",top="+horex+",width=600,height=600,menubar=no,directories=no,"+
	  "toolbar=no,location=no,status=no,scrollbars=yes,resizable=no");
	  

}


