// JavaScript Document
$(document).ready(function(){
	$('#reservas').boxen('http://www.attica21hotels.com/index.php/reservas_off/', {urlParams: { },width: 480,height: 300});
	$('#mapola').boxen('http://www.attica21hotels.com/index.php/mapaweb/', {urlParams: { },width: 810,height: 400});
	$('#mapola_en').boxen('http://www.attica21hotels.com/index.php/mapaweb_en/', {urlParams: { },width: 810,height: 400});
	$('#formulario').boxen('http://www.attica21hotels.com/index.php/formulario/', {urlParams: { },width: 410,height: 300});
	$('#formulario_en').boxen('http://www.attica21hotels.com/index.php/formulario_en/', {urlParams: { },width: 410,height: 300});
	
	$('#menu_main ul li a.menuppal img').preload({
			find: '.gif',
			replace: '_hover.gif'
		});
	$('#menu_sub ul li a img').preload({
			find: '.gif',
			replace: '_hover.gif'
		});
	
	
	
	$('#menu_sub ul li a img').hover(function(){
		this.src = this.src.replace('.gif','_hover.gif');	
	},function(){
		this.src = this.src.replace('_hover','');
	});
	
	$('#menu_main ul li a.menuppal img').hover(function(){
		this.src = this.src.replace('.gif','_hover.gif');	
	},function(){
		this.src = this.src.replace('_hover','');
	});

	}
)