$(document).ready(function() {
  	  
  	$("#spam").val("no");
  	
  	$("#enquiry_form .submit").click(function() {
  	
  		$(this).attr({value: "submitting..."});
  		/*$(this).attr({disabled: "disabled"});*/
  	
  	});
  	
  	$('.href_replace').each(function() {
  	
  		var href = $(this).attr("title");
  		$(this).removeAttr("title");
  		$(this).attr("href", href);
  	
  	});
  	
  	$.ajax({url: 		"/ajax/other_products.php",
			success: 	function(data) {
							$('#nav_body').after(data);
						}
	});
	
	if ($("body").attr("id") == "home") {
		
		$.ajax({url: 		"/ajax/brand_styles.php",
				success: 	function(data) {
								$('#right_nav').prepend(data);
							}
		});
		
	}
	
	if ($("body").attr("id") == "category") {
	
		$.ajax({url: 		"/ajax/brand_styles.php",
				success: 	function(data) {
								$('.brand_style_holder').append(data);
							}
		});
		
	}
	
	if ($("body").attr("id") == "category") {
	
		$.ajax({url: 		"/ajax/types_and_brands.php",
				success: 	function(data) {
								$('.colour_cat_nav').append(data);
							}
		});
		
		$.ajax({url: 		"/ajax/colours.php",
				success: 	function(data) {
								$('.type_cat_nav').prepend(data);
							}
		});
		
		$.ajax({url: 		"/ajax/brands.php",
				success: 	function(data) {
								$('.type_cat_nav').append(data);
							}
		});
		
	}
	
	if ($("body").attr("id") == "single") {
	
		$.ajax({url: 		"/ajax/full_nav.php",
				success: 	function(data) {
								$('.full_nav_holder').html(data);
							}
		});
		
	}
  		
});