//Javascript Document

//-- SLIDERS
$(document).ready(function(){	
			$("#slider").easySlider({
				auto: true, 
				continuous: true,
				controlsShow: true,
				speed: 1000,
				pause: 4000,
				prevId: 'prevBtn',
				prevText: '',
				nextId: 'nextBtn',	
				nextText: ''
			});
			
			$("#slider2").easySlider({
				auto: false, 
				continuous: false,
				controlsShow: true,
				speed: 600,
				pause: 4000,
				numeric: true
			});
		});	

//---------------------------------------------------------------------


//-- CONTACT FORM AJAX SUBMIT
$(function() {
  $('.error').hide();

  $(".button").click(function() {
		// validate and process form
		// first hide any error messages
    $('.error').hide();
		
		var email = $("input#email").val();
		if (email == "") {
      $("label#email_error").fadeIn();
      $("input#email").focus();
      return false;
    }
		var enquiry = $("#enquiry").val();
		if (enquiry == "") {
      $("label#enquiry_error").fadeIn();
      $("#enquiry").focus();
      return false;
    }
		
		var dataString = 'email=' + email + '&enquiry=' + enquiry;
		//alert (dataString);return false;
		
		$.ajax({
      type: "POST",
      url: "mailsend.php",
      data: dataString,
      success: function(){
					$('form#formsubmit').hide(function(){$('div.success').fadeIn();});
				}     });
    return false;
	});
});

//---------------------------------------------------------------------

//-- CASE STUDY GALLERY

/*
function brandgalleries() {
$(document).ready(function() {			

	 setTimeout(function(){$("#bigimage1").fadeIn("slow");}, 500);
	 
	 $("#image1link").click(function(){
	  		$("#bigimage1").fadeIn("slow");
			$("#bigimage2").fadeOut("slow");
			$("#bigimage3").fadeOut("slow");
			$("#bigimage4").fadeOut("slow");
			$("#bigimage5").fadeOut("slow");
			$("#bigimage6").fadeOut("slow");
		});
		
	$("#image2link").click(function(){
	  		$("#bigimage1").fadeOut("slow");
			$("#bigimage2").fadeIn("slow");
			$("#bigimage3").fadeOut("slow");
			$("#bigimage4").fadeOut("slow");
			$("#bigimage5").fadeOut("slow");
			$("#bigimage6").fadeOut("slow");
		});
		
	$("#image3link").click(function(){
	  		$("#bigimage1").fadeOut("slow");
			$("#bigimage2").fadeOut("slow");
			$("#bigimage3").fadeIn("slow");
			$("#bigimage4").fadeOut("slow");
			$("#bigimage5").fadeOut("slow");
			$("#bigimage6").fadeOut("slow");
		});
		
	$("#image4link").click(function(){
	  		$("#bigimage1").fadeOut("slow");
			$("#bigimage2").fadeOut("slow");
			$("#bigimage3").fadeOut("slow");
			$("#bigimage4").fadeIn("slow");
			$("#bigimage5").fadeOut("slow");
			$("#bigimage6").fadeOut("slow");
		});
		
	$("#image5link").click(function(){
	  		$("#bigimage1").fadeOut("slow");
			$("#bigimage2").fadeOut("slow");
			$("#bigimage3").fadeOut("slow");
			$("#bigimage4").fadeOut("slow");
			$("#bigimage5").fadeIn("slow");
			$("#bigimage6").fadeOut("slow");
		});
		
	$("#image6link").click(function(){
	  		$("#bigimage1").fadeOut("slow");
			$("#bigimage2").fadeOut("slow");
			$("#bigimage3").fadeOut("slow");
			$("#bigimage4").fadeOut("slow");
			$("#bigimage5").fadeOut("slow");
			$("#bigimage6").fadeIn("slow");
		});
	});
}




*/




