// for site specific functions. either grab js from code-library.js or write your own.

$(document).ready(function(){
  	
	// PIM Suite landing page
	$('div.collapse h3 a').click(function () { 
		$(this).parent().siblings('div').toggle("normal");
		$(this).toggleClass("selected");
    });

	//Enable disable State options in forms based on country
	 $('form div.formRow select.Country').change( function () {
			var sCountry = document.forms['frmLandingPage'].Country.value;
		 	if( ( sCountry == "United States of America") || ( sCountry == "Canada")  ){				
			 	document.forms['frmLandingPage'].State.disabled = false;
			}
			else{
				document.forms['frmLandingPage'].State.value="";
				document.forms['frmLandingPage'].State.disabled = true;
			}					
	 });
	 

    $("#tabs").tabs();

});