$(document).ready(function(){

	/* loading stuff */
	
	$('body').onImagesLoad({ selectorCallback: selectorImagesLoaded });
	
	function selectorImagesLoaded($selector){
		$(".loader").animate({ opacity: 'hide' }, 'slow');
	}
	
	var high = $(".container").height();
	
	$(".loader").height(high);
	
	/* background stuff */
	
	$('#bgcol1').hover(function() {
		$("#bgpic1").attr('src', 'images/001_rollover.png');
		$("#bgpic4").attr('src', 'images/004.png');
	},function(){
		$("#bgpic1").attr('src', 'images/001.png');
		$("#bgpic4").attr('src', 'images/004_rollover.png');
	});
	
	$('#bgcol2').hover(function() {
		$("#bgpic2").attr('src', 'images/002_rollover.png');
		$("#bgpic4").attr('src', 'images/004.png');
	},function(){
		$("#bgpic2").attr('src', 'images/002.png');
		$("#bgpic4").attr('src', 'images/004_rollover.png');
	});
	
	$('#bgcol3').hover(function() {
		$("#bgpic3").attr('src', 'images/003_rollover.png');
		$("#bgpic4").attr('src', 'images/004.png');
	},function(){
		$("#bgpic3").attr('src', 'images/003.png');
		$("#bgpic4").attr('src', 'images/004_rollover.png');
	});
	
	/*$('.rotate').cycle({
		fx: 'fade',
		speed: 2000,
		timeout: 3500
	});*/
	
	/* content stuff */
	
	$('.closelink').hide();
	$('.hitbutton').hide();
	$('.stockists').hide();
	$('.field').hide();
	$('.submit').hide();
	$('#thankyou').hide();
	
	$('.menulink').hover(function() {
		$(this).animate({backgroundPosition: '0 0'}, 'fast');
	},function(){
		$(this).animate({backgroundPosition: '0 17px'}, 'fast');
	});
	
	$('.menulink').click(function() {
		$("#content_" + $(this).attr("id")).show();
		$("#content_" + $(this).attr("id")).animate({backgroundPosition: '0 169px'}, 400, function(){
			$('.closelink').show();
			$('.hitbutton').show();
			$('.stockists').show();
			$('.field').show();
			$('.submit').show();
			loadcontent('.stocklists', 'includes/botswana.html');
		});
	});
	
	$('.closelink').click(function() {
		$('.closelink').hide();
		$('.hitbutton').hide();
		$('.stockists').hide();
		$('.field').hide();
		$('.submit').hide();
		$('#thankyou').hide();
		loadcontent('.stocklists', 'includes/close.html');
		$("#content_" + $(this).attr("id")).animate({backgroundPosition: '0 580px;'}, 400, function(){
			$(this).hide();
		});
	});
	
	/* stockists stuff */
	
	$('.stockdroplink').hover(function() {
		$('.regionmenu').show();
	},function(){
		$('.regionmenu').hide();
	});
	
	$('.regionmenu').hover(function() {
		$('.regionmenu').show();
	},function(){
		$('.regionmenu').hide();
	});
	
	$('.regionmenu').click(function() {
		$('.regionmenu').hide();
	});
	
	/* form stuff */
	
	$('#testform').ajaxForm(function(){
		$('#testform').clearForm();
		$("#thankyou").animate({ height: 'show' }, 'fast');
	});

});

/*$(function(){ $('.equalheight').equalHeights(); });*/

function loadcontent(contentdiv, contenturl)
{
	$(""+contentdiv+"").load(contenturl);
}


