/*
 * Copyright (c) 2009 Digital EYE
 * http://www.digitaleyemedia.com/
 *
 * Date: 2009-09-08
 */

$(document).ready( function()
{
	/*
	Mouse over <a>, swap <img> inside with "hover" attribute
	<a class="nrHover"><img src="..." hover=".." /></a>
	*/
	$(".nrHover").mouseover(function() { 
		var $targetImg = $(this).children(); var currentImg = $targetImg.attr('src'); $targetImg.attr('src', $targetImg.attr('hover'));	$targetImg.attr('hover', currentImg);
	}).mouseout(function() { 
		var $targetImg = $(this).children(); var currentImg = $targetImg.attr('src'); $targetImg.attr('src', $targetImg.attr('hover'));	$targetImg.attr('hover', currentImg);
	});
	
	/* Initiate Gallery View 2.0 */
	$('#gallery').galleryView({
			panel_width: 715,
			panel_height: 555,
			frame_width: 80,
			frame_height: 50,
			overlay_opacity: 0.9,
			transition_interval: 7000,
			nav_theme: 'light',
			panel_scale: 'crop',
			frame_scale: 'nocrop',
			background_color: 'black',
			border: 'none',
     		easing: 'easeInOutQuad',
		    pause_on_hover: true
		});
	
	/* hide "Terms of Use" and set "terms of use" link to show it back when clicked */
	$('#tou').hide();
	$('#touLink').click(function(event) {
		event.preventDefault();
		if($('#tou').is(':visible')) {
			$('#tou').hide("slow");
		}
		else {
			$('#tou').show("slow");
		}
	});
	$('#contact_form input, #contact_form textarea').mouseover(function() {
		$(this).css("border","1px solid #901733");
    }).mouseout(function(){
		$(this).css("border","1px solid #000000");
    });

});