﻿$(function() {
    // Accordion
    $("#accordion").accordion({ header: "h3", fxFade: true, fxSpeed: 'slow', autoHeight: false, collapsible: true });
    // Tabs
    $('#tabs').tabs();
    $('#ui-datepicker-div').hide;
});

$(function() {
    $('.box1').click(function() {
        window.location = "Kurzfristangebote.aspx?Flughafen=&amp;FlughafenName=Alle Flughafen&amp;Reisedauer=5;9&amp;AnzE=2&amp;k1=&amp;k2=&amp;k3=&amp;k4=&amp;reiseziel=AYT"
    });
    $('.box2').click(function() {
        window.location = "Kurzfristangebote.aspx?Flughafen=&amp;FlughafenName=Alle Flughafen&amp;Reisedauer=5;9&amp;AnzE=2&amp;k1=5&amp;k2=5&amp;k3=&amp;k4=&amp;reiseziel=AYT"
    });
    $('.box3').click(function() {
    window.location = "http://www.sun-sea.de/Blaue-Reise.aspx"
    });
});



$(function(){
    //all hover and click logic for buttons
    $(".fg-button:not(.ui-state-disabled)")
    .hover(
	    function(){ 
		    $(this).addClass("ui-state-hover"); 
	    },
	    function(){ 
		    $(this).removeClass("ui-state-hover"); 
	    }
    )
    .mousedown(function(){
		    $(this).parents('.fg-buttonset-single:first').find(".fg-button.ui-state-active").removeClass("ui-state-active");
		    if( $(this).is('.ui-state-active.fg-button-toggleable, .fg-buttonset-multi .ui-state-active') ){ $(this).removeClass("ui-state-active"); }
		    else { $(this).addClass("ui-state-active"); }	
    })
    .mouseup(function(){
	    if(! $(this).is('.fg-button-toggleable, .fg-buttonset-single .fg-button,  .fg-buttonset-multi .fg-button') ){
		    $(this).removeClass("ui-state-active");
	    }
    });
});
