//show respons form ajax form submit
function showResponse(responseText, statusText)  {
	$('#inquire_form').fadeOut(300, function() {
		$(this).hide();	
		$('#form_respons').html(responseText).fadeIn(300);
	});
}

//after slide we check the cursor
function onAfterSlide(curr, next, opts) {
    var index = opts.currSlide;
    $('#prevslide')[index == 0 ? 'hide' : 'show']();
    $('#nextslide')[index == opts.slideCount - 1 ? 'hide' : 'show']();
}


$(document).ready(function () { 

	//ajax form inquires
	$('#inquire_form').ajaxForm({
		success: showResponse,
		clearForm: 'true'
	});
	
	//slide for collections
	$('#cycle-wrapper').cycle({
	    fx:     'scrollHorz',
	    prev:   '#prevslide',
	    next:   '#nextslide',
	    after:   onAfterSlide,
	    timeout: 0
	});
		
	//lightbox in footer
	$('a.ajaxlink').fancybox();
	
	//lightbox in footer
	$('a#fakepoplink').fancybox({
		width: 600,
		height: 210,
		autoDimensions: false,
		autoScale: false
	});
	
	//jq zoom
	var options = {
		zoomWidth: 360,
		zoomHeight: 322,
		xOffset: 20,
		yOffset: 0,
		position: "right",
		title: false,
		showEffect: "fadeIn",
		hideEffect: "fadeOut",
		fadeinSpeed: "fast",
		fadeoutSpeed: "fast"
	};
	
	$('.magnify_catch').jqzoom(options);
	$('.magnify_catch').click(function() {
		return false;	
	});
});

//wait till everything is loaded
$(window).load(function() {
	$('a#fakepoplink').click();
	
	//fade for landing
	/*
	$('#fader').delay(2500).animate({ opacity: 0 }, 500, function() {
		window.location = "http://www.madeherthink.com/index.php?collectionsposts=collections"
	});
	*/
});
