// JavaScript Document

$(document).ready(function(){
			//ROLL OVER	
			$("#iconbar li .prod-img3").hover(
		function(){
			$(this).find("span").attr({
				"style": 'display:inline'
			});
			$(this).find("span").animate({opacity: 1, top: "-160"}, {queue:false, duration:400});
		}, 
		function(){
			$(this).find("span").animate({opacity: 0, top: "-170"}, {queue:false, duration:400}, "linear",
				function(){
					$(this).find("span").attr({"style": 'display:none;visibility:hidden'});			
				}
			);	});		   
			
						//References
				var sections = $("div.prod-img3 a");
				var content = $("div.content_right");
				//Manage click events
				sections.click(function(){


					//load selected section
					switch(this.id){
						case "1":
							content.load("../adjustable-beds/1.htm");
							break;
							
						case "2":
							content.load("../adjustable-beds/2.htm");
							break;
						case "3":
							content.load("../adjustable-beds/3.htm");
							break;
					}
					
				});	
			
			});


