$(function(){
	//this is done when "Home" is clicked.
	$('#topHome').live("click", function(){	
		window.location.href = 'index.php';
	});

	//this is done when "Equiptment Rentals" is clicked.
	$('#topRentals').live("click", function(){	
		window.location.href = 'rentals.php';
	});
	
	//this is done when "Booking Form" is clicked.
	$('#topBooking').live("click", function(){	
		window.location.href = 'booking.php';
	});
	
	//this is done when "Gallery" is clicked.
	$('#topGallery').live("click", function(){	
		window.location.href = 'gallery.php';
	});
	
	//this is done when "About Us" is clicked.
	$('#topAbout').live("click", function(){	
		window.location.href = 'about.php';
	});
	
	//this is done when "Contact Us" is clicked.
	$('#topContact').live("click", function(){	
		window.location.href = 'contact.php';
	});
	
	//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
	//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
	//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
	
	//this is done when "Audio" is clicked.
	$('#sideAudio').live("click", function(){	
		window.location.href = 'audio.php';
	});
	
	//this is done when "Visual" is clicked.
	$('#sideVisual').live("click", function(){	
		window.location.href = 'visual.php';
	});
	
	//this is done when "Lighting" is clicked.
	$('#sideLighting').live("click", function(){	
		window.location.href = 'lighting.php';
	});		
	
	//this is done when "Support Services" is clicked.
	$('#sideSupport').live("click", function(){	
		window.location.href = 'support.php';
	});	
	
	//this is done when "Television Production" is clicked.
	$('#sideTVproduction').live("click", function(){	
		window.location.href = 'tvproduction.php';
	});	
	
	//this is done when "CD/DVD Replication" is clicked.
	$('#sideDVDreplication').live("click", function(){	
		window.location.href = 'dvdreplication.php';
	});	
	
	//this is done when "Digital Signage" is clicked.
	$('#sideSignage').live("click", function(){	
		window.location.href = 'signage.php';
	});	
	
	//this is done when "Event Planning Guide" is clicked.
	$('#sidePlanning').live("click", function(){	
		window.location.href = 'planning.php';
	});	
	
	//this is done when "Dealerships" is clicked.
	$('#sideDealerships').live("click", function(){	
		window.location.href = 'dealerships.php';
	});	
	
});