/* JS Document */
/****************************************
|
| Authors:	Stuart Grant 
| Copyright 2008 Lightmaker.com

****************************************/


//function requiredForm() {
		//required status
//		var validateClassName = $(".required");
		//var formtext = $(this).parent().find("label").text();
//		 $(validateClassName).parent("div").find("label").append("<span class=tt_req></span>");
//		 $(validateClassName).parents().find(".form_row span.tt_req").html( "* "/* + formtext + " is required "*/);					
//		 $(validateClassName).parents("div:last").find("span.tt_req").fadeIn(300);
//		 $(validateClassName).parents("div").find(".greytext").css({ color : "#ffffff", background : "#FF0000"});
// }
//run this function for style ammends
//$(document).ready( function(){requiredForm();} );

/*
$(document).ready(function(){
						   
	//input, select focus fire
	 $("input, select, textarea").focus(function () {
		 $(this).css({ borderColor : "#FECB12", color : "#0089D0", background : "#f7f7f7"});					
	});
	  $("input, select, textarea").blur(function () {
		$(this).css({ borderColor : "",  color : "", background : ""});
	});
	  
	 $(".check").hover(
		 function(){
			$(this).find("span").addClass("underline");								
		},function(){
			$(this).find("span").removeClass("underline");								
	}); 
	  
	 //submit button hover 
	 $(".submit").hover(
		 function(){
			$(this).addClass("submit_hover");								
		},function(){
			$(this).removeClass("submit_hover");								
	}); 	
	  
 });

*/




function equalHeight(group) {
	tallest = 0;
	group.each(function() {
		thisHeight = $(this).height();
		if(thisHeight > tallest) {
			tallest = thisHeight;
		}
	});
	group.height(tallest);
}
$(document).ready(function() {
	//equalHeight($(".equal"));
});

 
 
 