// JavaScript Document

function returnDocument() {
        var file_name = document.location.href;
        var end = (file_name.indexOf("?") == -1) ? file_name.length : file_name.indexOf("?");
        return file_name.substring(file_name.lastIndexOf("/")+1, end);
    }


$(document).ready( function() {
	var whichPage = returnDocument();
	switch (whichPage) {
		case "index.htm":
			pos2 = 0;
			break;
		case "wheel.htm":
			pos2 = 1;
			break;
		case "order.htm":
			pos2 = 2;
			break;
		case "retailers.htm":
			pos2 = 3;
			break;
		case "fun.htm":
			pos2 = 3;
			break;
		case "about.htm":
			pos2 = 4;
			break;
		default:
			pos2 = 0;
	}
	
	var offset2 = ((pos2) * 29);
		$('#menu').css( {
			'background-position' : 'center ' + -offset2 + 'px' });				

	$('#menu ul li').hover( function() {
		var pos1 = $('#menu ul li').index(this);
		//alert(pos1);
		var offset1 = ((pos1) * 29);
		//alert(offset1)
		$('#menu').css( {
			'background-position' : 'center ' + -offset1 + 'px' });
	},
	function() {
		$('#menu').css( {
			'background-position' : 'center ' + -offset2 + 'px'  });
	});
	

	$('a[href="testimonials.htm"]').colorbox({width:"80%", height:"80%", iframe:true});
	$('a[href="retailers.htm"]').colorbox({width:"80%", height:"80%", iframe:true});
	$('a[href="guarantee.htm"]').colorbox({width:"50%", height:"30%", iframe:true});
	$('a[href="contact.htm"]').colorbox({width:"50%", height:"30%", iframe:true});
	$('#wrapper').dropShadow();  // Creates new drop shadows						
});