$(document).ready(function(){
	$("ul#nav img").hover(
		function(e){
			this.src = this.src.replace("_on","_off");
			var cur_alt = this.alt;
			$('#tooltipDiv').css({opacity:0.9, display:"none", top:52, left:e.pageX-75}).fadeIn(400).html('<p>'+cur_alt+'</p>');
			//alert(e.pageX);
		},
		function(){
			this.src = this.src.replace("_off","_on");
			$('#tooltipDiv').fadeOut(400).html('');
		}
	);
	$('.floating').animate({
		right: "5px", 
		bottom:"30%",
	}, 1000);
		
	$.localScroll({hash:true});

	$First = $("#services a:first");
	$First.each(function(){$("#services_content").load(this.href);});	
	$("#services a").click(function(){
		$("#services_content").html('<h2>loading...</h2>');
		$("#services_content").load(this.href);
		return false;
	});

	$('#contact_form').ajaxForm(function() { 
         $('#response').html("Thank-you. We will respond to your message as soon as possible.<br/>").hide().fadeIn(1500).fadeOut(2500);
    }); 
    
    $("#work_page").html('<h2>loading</h2>');
	$("#work_page").load('http://www.growgraphics.co.za/index.php/work/C12');
	$('.crc').cycle({ fx: 'fade' });
});

Shadowbox.init({players:["html","iframe"]});

function AffectCategory(url) {
	if(url == "")
		$("#work_page").load('http://www.growgraphics.co.za/index.php/work/C12');  
	else $("#work_page").load('http://www.growgraphics.co.za/index.php/work/C'+url);  
}
