jQuery.noConflict();
(function($){
$(function(){
    $('body').pngFix();
    $('#xmail').dialog({
        autoOpen: false,
        width: 600,
        modal: true,
        resizable: false,
        buttons: {
            "Schließen": function() { 
		 $(this).dialog("close"); 
	    } 
        }
    });
    $('#dialog_link').click(function(){
	$('#xmail').dialog('open');
	return false;
    });

    _theGets = '';
    var getUrl = location.href;
    var params = (getUrl.split('?').length == 1) ? '': getUrl.split('?');
    if(params != '') {
        
        _theGets = params[1].split('&');
        for(var i = 0;i < _theGets.length;i++){
            if(_theGets[i].split('=')[1] == 'tt_address') {
                $('#dialog_link').click();
            }
        }
    }
    
    if ($('#other-hotel').attr('href') == ''){
    $('#other-hotel').css('display','none');
    }
    
    if($('.footer-content').is('div')) {
    	$('.footer-content').find('.csc-default').each(function(){
    		$(this).find('p:last').addClass('last');
    	});
    	
    	$('.footer-content .left .csc-default:last, .footer-content .right .csc-default:last').addClass('last');
    }
});
})(jQuery);

