$(document).ready(function() {

	$('#text').click(function() {
		$(this).val('');
	})

	$('#code').click(function() {
		$(this).val('');
	})

        $('#promoIn').cycle({
                fx:      'scrollHorz',
                timeout: 5000,
                speed:   800,
                pause:    1,
                prev:    '#prev',
                next:    '#next',
                cleartype:  true,
                cleartypeNoBg:  true                
        });                                                 
        
        /*SELECTBOXES*/
	$('.selectbox').selectbox();	

	$("a[rel='fancybox']").fancybox();

	/*DETAIL PDF MORE*/
        var showText="Zobrazit další dokumenty";
        var hideText="Skrýt další dokumenty";        
        $(".detailTextBox .morePdf a").append('<span class="text">'+showText+'</span>');
        $('.detailTextBox .pdfListMore').hide();
        $('.detailTextBox .morePdf a').click(function() {
                $(this).parent().next('.pdfListMore').toggle('fast');
                $(this).toggleClass('arrowUp');
                if ($(this).children('.text').html()==showText) {
                        $(this).children('.text').html(hideText);
                }
                else {
                        $(this).children('.text').html(showText);
                }                   
                return false;
        });    
        
	/*PRODUCT BOX TITLE*/
        $('.productBox h3 a').mouseover(function() {
                $(this).css('height', 'auto');               
                $(this).css('background', '#DADCDB');               
                return false;
        }).mouseout(function(){
                $(this).css('height', '44px');               
                $(this).css('background', '#f1f3f2');               
                return false;
        });
        
	/*PROMO BOX TITLE*/
        $('.promoItem a').mouseenter(function() {
                $(this).children('.promoItemText').css('height', 'auto');
                return false;
        }).mouseleave(function(){
                $(this).children('.promoItemText').css('height', '36px');                            
                return false;
        });
        
        /*DETECT BROWSER FF <= 3.5.X*/
        if ($.browser.mozilla && $.browser.version.substr(0, 5) <= '1.9.1') {        
                $('.detailTextBox .inputPieces').css('padding-top', '4px');
                $('.detailTextBox .inputPieces').css('height', '27px');

                $('.productBox .inputPieces').css('padding-top', '2px');
                $('.productBox .inputPieces').css('height', '19px');
                 
        }
				
        /*doprava a platba*/
	$('#transfer1').click(function() {
		$('#payment2').attr('disabled', true).attr('checked', false);
		$('#payment1').attr('disabled', false);
		$('#payment3').attr('disabled', false);
		if ($("#payment3").attr("checked") == false) $("#payment1").attr("checked", true);
	});
	$('#transfer2').click(function() {
		$('#payment2').attr('disabled', true).attr('checked', false);
		$('#payment1').attr('disabled', false);
		$('#payment3').attr('disabled', false);
		if ($("#payment3").attr("checked") == false) $("#payment1").attr("checked", true);
	});
	$('#transfer3').click(function() {
		$('#payment1').attr('disabled', true);
		$('#payment3').attr('disabled', true);
		$('#payment2').attr('disabled', false).attr('checked', true);
	});

	$('#transfer3').click();

});

