/*

#quickbooking {
width: 100%;
	position: absolute;
	bottom: -220px;
	left: 0;
margin:-30px;
background: #E0C05D url("../img/qb_bkg.png") repeat-x top center;

} 


*/
$(document).ready(function() {
    
    $("#quickbooking").css({
    "width":"100%",
    "position":"relative",
    "bottom":"0",
    "padding-top":"11px"
    })
    
    if($.cookie("booking_status") == null || $.cookie("booking_status") == "open_qb" ){
    $(".open a").hide();
    $(".close a").show();

}else{
    $(".open a").show();
    $(".close a").hide();
}
var refe="";

    $(".close a").live("click",function(x){
        x.preventDefault();
        refe=1;
        var qb_height=  $("#quickbooking").height()+10;
        $("#tabquickbooking, #tabquickbooking_hide").animate({
        bottom:"-"+qb_height+"px"
    },1000);
    $.cookie("booking_status","close_qb", { expires: 0, path: '/', domain: '.ilguelfobianco.it'});
    $(this).fadeOut();
    $(".open a").fadeIn();
    })
    
    
     $(".open a").live("click",function(x){
        x.preventDefault();      


        $("#tabquickbooking, #tabquickbooking_hide").animate({
        bottom :"0px"
        },1000);
        
     $.cookie("booking_status","open_qb", { expires: 0, path: '/', domain: '.ilguelfobianco.it'});
    $(this).fadeOut();
    $(".close a").fadeIn();
})
})
