$(document).ready( function() {

    $("#slider").easySlider({
        auto: true,
        continuous: true,
        controlsShow: false,
        numeric: false,
        pause: 3000
    });
   
    $('#frmformSearch-search').click(function()    {
        if($(this).val() == 'hledat'){
            $(this).val("");
            $(this).css('color','black');
        }
    });
    
    $('#frmformSearch-search').blur(function()    {
        if($(this).val() == '')
            $(this).val("hledat");
    });
       
    $("a.ajax").live("click", function (event) {
        event.preventDefault();
        $.get(this.href);
    });
    
     $('#dialogLogin').dialog({
		autoOpen: false,
		width: 600,
		modal: true,
		buttons: {
			"Zavřít": function() {
				$(this).dialog("close");
			}
		}
	});

	// Dialog Link
	$('#btnLoginForm').click(function(){
		$('#dialogLogin').dialog('open');
		return false;
	});


    // Pretty foto
    $("a[rel^='prettyPhoto']").livequery(function() {
        $("a[rel^='prettyPhoto']").prettyPhoto({
            theme:'light_rounded',
            opacity: 0.40,
            default_width: 400
        });
    });
    
});       
