jQuery.preloadImages = function()	{
	for(var i = 0; i<arguments.length; i++)	{
		jQuery("<img>").attr("src", arguments[i]);
	}
}
$.preloadImages(
"/sites/all/themes/bestrank/images/services/button1_on.jpg", 
"/sites/all/themes/bestrank/images/services/button2_on.jpg", 
"/sites/all/themes/bestrank/images/services/button3_on.jpg", 
"/sites/all/themes/bestrank/images/services/button4_on.jpg", 
"/sites/all/themes/bestrank/images/services/button5_on.jpg", 
"/sites/all/themes/bestrank/images/services/button6_on.jpg", 
"/sites/all/themes/bestrank/images/services/leftsideo.png", 
"/sites/all/themes/bestrank/images/services/rtsideo.png", 
"/sites/all/themes/bestrank/images/services/head_media_buying.jpg", 
"/sites/all/themes/bestrank/images/services/head_search_social_optimiza.jpg", 
"/sites/all/themes/bestrank/images/services/head_software_services.jpg", 
"/sites/all/themes/bestrank/images/services/head_tracking.jpg", 
"/sites/all/themes/bestrank/images/services/head_video_services.jpg", 
"/sites/all/themes/bestrank/images/services/head_webdesign_development.jpg", 
"/sites/all/themes/bestrank/images/services/media_buyingbg.jpg", 
"/sites/all/themes/bestrank/images/services/search_social_bg.jpg", 
"/sites/all/themes/bestrank/images/services/software_servicesbg.jpg", 
"/sites/all/themes/bestrank/images/services/trackingbg.jpg", 
"/sites/all/themes/bestrank/images/services/video_servicesbg.jpg", 
"/sites/all/themes/bestrank/images/services/webdesign_devbg.jpg"
);

$(
	function()	{
		$("img.rollover").hover(
			function()	{
				this.src = this.src.replace("_off","_on");
			},
			function()	{
				this.src = this.src.replace("_on","_off");
			}
		);
	}
)

$(document).ready(function() {
	var defaultBox = "mbox1";
	hideall();
	$('#mbox1').show();
	
	$('a#box1').mouseover(function() {
		defaultBox = "mbox1";
		show_default_box();
	});
	$('a#box2').mouseover(function() {
		defaultBox = "mbox2";
		show_default_box();
	});
	$('a#box3').mouseover(function() {
		defaultBox = "mbox3";
		show_default_box();
	});
	$('a#box4').mouseover(function() {
		defaultBox = "mbox4";
		show_default_box();
	});
	$('a#box5').mouseover(function() {
		defaultBox = "mbox5";
		show_default_box();
	});
	$('a#box6').mouseover(function() {
		defaultBox = "mbox6";
		show_default_box();
	});

	$('a#box1').click(function() {
		$("#tab1 li a span").css('color','#990000');
		$("#tab1 li a span").css('background','url(/sites/all/themes/bestrank/images/services/rtsideo.png) no-repeat right top');
		$("#tab1 li a").css('background','url(/sites/all/themes/bestrank/images/services/leftsideo.png) no-repeat left top');
		
	});
	$('a#box2').click(function() {
		$("#tab2 li a span").css('color','#990000');
		$("#tab2 li a span").css('background','url(/sites/all/themes/bestrank/images/services/rtsideo.png) no-repeat right top');
		$("#tab2 li a").css('background','url(/sites/all/themes/bestrank/images/services/leftsideo.png) no-repeat left top');
	});
	$('a#box3').click(function() {
		$("#tab3 li a span").css('color','#990000');
		$("#tab3 li a span").css('background','url(/sites/all/themes/bestrank/images/services/rtsideo.png) no-repeat right top');
		$("#tab3 li a").css('background','url(/sites/all/themes/bestrank/images/services/leftsideo.png) no-repeat left top');
	});
	$('a#box4').click(function() {
		$("#tab4 li a span").css('color','#990000');
		$("#tab4 li a span").css('background','url(/sites/all/themes/bestrank/images/services/rtsideo.png) no-repeat right top');
		$("#tab4 li a").css('background','url(/sites/all/themes/bestrank/images/services/leftsideo.png) no-repeat left top');
	});
	$('a#box5').click(function() {
		$("#tab5 li a span").css('color','#990000');
		$("#tab5 li a span").css('background','url(/sites/all/themes/bestrank/images/services/rtsideo.png) no-repeat right top');
		$("#tab5 li a").css('background','url(/sites/all/themes/bestrank/images/services/leftsideo.png) no-repeat left top');
	});
	$('a#box6').click(function() {
		$("#tab6 li a span").css('color','#990000');
		$("#tab6 li a span").css('background','url(/sites/all/themes/bestrank/images/services/rtsideo.png) no-repeat right top');
		$("#tab6 li a").css('background','url(/sites/all/themes/bestrank/images/services/leftsideo.png) no-repeat left top');
	});

	function show_default_box(a)	{
		$("a span").css('color','#164EBE');
		$("a span").css('background','url(/sites/all/themes/bestrank/images/services/rtside.png) no-repeat right top');
		$(".ul li a").css('background','url(/sites/all/themes/bestrank/images/services/leftside.png) no-repeat left top');
		hideall();
		$('#' + defaultBox).fadeIn('fast');
	}
	function hideall()	{
		$('#mbox1').hide();
		$('#mbox2').hide();
		$('#mbox3').hide();
		$('#mbox4').hide();
		$('#mbox5').hide();
		$('#mbox6').hide();
	}
});
