// JavaScript Document
$(document).ready(function(){ 
	var active = 0;
	$(document.body).append("<div id='bubble' class='bubble'><div class='bubble-top'></div><div class='bubble-content'></div><div class='bubble-bot-left'></div><div class='bubble-bot-right'></div><br class='clr' /></div>");
	$("div#bubble").hide();
	$("div#right-banners").mouseout(function(){$("div#bubble").hide();});
	$("div#right-banners a").hover(function(){
		href = $(this).attr("href");
		var desc = "";
		var img = "";
		switch ( href )
		{
			case "../index.aspx":
				desc = "<h4>Home</h4><p>golf holidays, sports holidays with skyresorts<br /> Resorts La Manga Club, Roda Golf Resort,<br /> Hacienda Del Aamo Golf Resort, Serena Golf Resort</p>";
				img = "<img src='images/images/home.png' alt='Home - Sky Resorts, Sports Holidays, Golf, Rugby, Tennis, Bowling' />";
				break;
			case "../car-hire.aspx":
				desc = "<h4>Resorts</h4><p>La Manga Club, Roda Golf Resort, Hacienda Del Aamo Golf Resort, Serena Golf Resort</p>";
				img = "<img src='images/images/resorts.png' alt='Home - Sky Resorts, Sports Holidays, Golf, Rugby, Tennis, Bowling' />";
				break;
			case "../property-rentals.aspx":
				desc = "<h4>Holiday Rentals</h4><p>Apartments. Town Houses, Villas and Luxury Villas all available for holidays with Sky Resorts<br /></p>";
				img = "<img src='images/images/home.png' alt='Home - Sky Resorts, Sports Holidays, Golf, Rugby, Tennis, Bowling' />";
				break;
			case "../hotels.aspx":
				desc = "<h4>Hotels</h4><p>Prince Felipe Hotel La Manga Club, Las Lomas Village La Manga Club, Serena Golf Hotel, Roda Golf Apartments.<br /></p>";
				img = "<img src='images/images/hotels.png' alt='Home - Sky Resorts, Sports Holidays, Golf, Rugby, Tennis, Bowling' />";
				break;
			case "../golf-home.aspx":
				desc = "<h4>Golf</h4><p>Choose golf courses in the Costa Calida region to play<br /></p> ";
				img = "<img src='images/images/golf.png' alt='Home - Sky Resorts, Sports Holidays, Golf, Rugby, Tennis, Bowling' />";
				break;
			case "../football.aspx":
				desc = "<h4>Football</h4><p>Events, coaching facilities, tournaments pre season training and tours with Sky Resorts<br /></p>";
				img = "<img src='images/images/football.png' alt='Home - Sky Resorts, Sports Holidays, Golf, Rugby, Tennis, Bowling' />";
				break;
			case "../rugby.aspx":
				desc = "<h4>Rugby</h4><p>Events, coaching facilities, tournaments pre season training and tours with Sky Resorts<br /></p>";
				img = "<img src='images/images/rugby.png' alt='Home - Sky Resorts, Sports Holidays, Golf, Rugby, Tennis, Bowling' />";
				break;
			case "../tennis.aspx":
				desc = "<h4>Tennis</h4><p>28 tennis courts, floodlit, coaching, competitions, paddle tennis and tournaments<br /></p>";
				img = "<img src='images/images/tennis.png' alt='Home - Sky Resorts, Sports Holidays, Golf, Rugby, Tennis, Bowling' />";
				break;
			case "../cricket.aspx":
				desc = "<h4>Cricket</h4><p>Coaching facilities, practice nets, 2 cricket pitches for matches, training 20 20 games and tours<br /></p>";
				img = "<img src='images/images/cricket.png' alt='Home - Sky Resorts, Sports Holidays, Golf, Rugby, Tennis, Bowling' />";
				break;
			case "../bowling.aspx":
				desc = "<h4>Bowling</h4><p>Grass and astro turf bowling greens, play local clubs, bowling groups events and competition bowls<br /></p>";
				img = "<img src='images/images/bowling.png' alt='Home - Sky Resorts, Sports Holidays, Golf, Rugby, Tennis, Bowling' />";
				break;
		}
			$("div.bubble").show();
			
			$(document.body).mousemove(function(e){
				var xcor = e.pageX-310;
				var ycor = e.pageY-210;
				$("div.bubble").css({left:xcor, top:ycor});
				$("div.bubble-content").html("<div class='bubble-content-text'>"+desc+"<p>"+img+"</p>");
			});
	}, function(){
			$("div#bubble").hide();
	});	
});


