$(document).ready(function(){

	// Show/hide product select function
	function product_select() {
		// if selected index is not the first one show it, otherwise hide it
		if( $('#contact-reason option').index($("#contact-reason option:selected")) > 0 ) {
			$('#contact-form #product').show();
		} else {
			$('#contact-form #product').hide();
		}
	}
	
	// When click on product view info link, reveal info and change link content to hide info
	$('ul.product-list h4 a').click(function(e) {
		$(this).parent().next().slideToggle();
		
		if( $(this).text() == "view info" ) {
			$(this).text('hide info');
		} else {
			$(this).text('view info');
		}
		
		e.preventDefault();
	});
	
	
	// Contact form, show/hide product select when needed
	$('#contact-reason').change(function() {
		product_select();
	});
	
	// Make sure product select is correct on error/page reload
	product_select();
	
});