/*
	--------------------------------------------------------------
	jquery js by fencl web design -- http://www.fenclwebdesign.com
	--------------------------------------------------------------
	core.js 6/6/2011
	--------------------------------------------------------------
*/

$(document).ready(function() {
	/* navigation hover / active states / clicked */
	$('#nav_' + currentNav).addClass('navactive');
	
	$('.navclick').mouseover(function() {
		$('#nav_' + currentNav).removeClass('navactive');
		$(this).addClass('navactive');
	});
	
	$('.navclick').mouseout(function() {
		$(this).removeClass('navactive');
		$('#nav_' + currentNav).addClass('navactive');
	});
	
	$('.navclick').click(function() {
		window.location = $(this).attr('goto');
	});
	
	/* leadlinked button */
	
	$('#leadlinked').click(function() {
		window.location = 'http://www.leadlinked.com';
	});
	
	/* submit form */
	
	$('#submitbutton').click(function() {
		$('#' + $(this).attr('formname')).submit();
	});
	
	/* image rollover functions */
	$('img[data-hover]').hover(function() {
		$(this).attr('tmp', $(this).attr('src')).attr('src', $(this).attr('data-hover')).attr('data-hover', $(this).attr('tmp')).removeAttr('tmp');
	}).each(function() {
		$('<img />').attr('src', $(this).attr('data-hover'));
	});
	
	$('input[data-hover]').hover(function() {
		$(this).attr('tmp', $(this).attr('src')).attr('src', $(this).attr('data-hover')).attr('data-hover', $(this).attr('tmp')).removeAttr('tmp');
	}).each(function() {
		$('<img />').attr('src', $(this).attr('data-hover'));
	});
});
