// JavaScript Document

// execute your scripts when the DOM is ready. this is mostly a good habit
jQuery(document).ready(function() {
	// form login button action
	jQuery('.pLoginBtn').click(function() {
		jQuery('.pLoginFrm').toggle();
	});
	
	jQuery("#accordion").tabs("#accordion div", {
		tabs: 'a', 
		effect: 'horizontal'
	});
	
});
