
$(document).ready(function() {
	/*Form Labels*/
	$('.contact-wrap .select label').hide();
	$('.contact-wrap input[type=text][class!=h-pot], .contact-wrap textarea, #form-newsletter input[type=text][class!=h-pot]').placeholder();
	
	/*Contact Form Drop Down*/
	$('.contact').css({
		'margin-top' : '-243px'
	});
	$('#contact-btn').click(function () {
		if ($('#contact-btn').attr('class') != "open") {
			$('#contact-btn').toggleClass('open');
			$('.contact').animate({ 'margin-top' : '0' }, 500);
		} else {
			$('#contact-btn').toggleClass('open');
			$('.contact').animate({ 'margin-top' : '-243px' }, 500);
		}
		
		return false;
	});
	
	
	// Homepage Feature
	$('#vendor-logos-carousel').jCarouselLite({
		btnNext: '#vendor-logos-carousel .next'
		,btnPrev: '#vendor-logos-carousel .prev'
		,visible: 5
	});
	//hack to fire the navigation
	$('#logo-nav').delegate('a', 'click', function(){
		var direction = $(this).attr('rel');
		
		$('#vendor-logos-carousel .'+direction).trigger('click');
		
		return false;
	});
	
	//newsletter signup preprocess
	$('#cc-submit', '#form-newsletter').live('click', function(){
		if( $('#cc-hptha').val() != '' ){
			alert('Error processing form.  Please disable autoform-fillers and reload the page before submitting this form.\r\nThank you for your patience.');
			return false;
		}
	});
	
}); 