$(document).ready(function() {
	var url = $("#flashContent #buyUrl").attr("href"); // Get the buy URL from the anchor.

	$("#flashContent").click(function() { // Make #flashContent clickable.
		window.location = url;
		return true;
	}).mouseover(function() { // Display the URL in the status bar on mouse over.
		window.status = url;
		return true;
	}).mouseout(function() { // Display nothing in the status bar on mouse out.
		window.status = "";
		return true;
	}).addClass("clickable"); // Change the cursor to a 'link' cursor.
});
