// JavaScript Document

jQuery(document).ready(function() {
	jQuery('.pf_menucontent').hide();
	
	jQuery('.pf_menuButton').toggle(function() {
		jQuery(this).parent().find('.pf_menucontent').slideDown('slow');
		if (jQuery.browser.msie  && parseInt(jQuery.browser.version) <= 8) {	
		} else {
			jQuery(this).parent().find('.pf_indicator').rotate({animateTo:180});	
		}
	}, function() {
		jQuery(this).parent().find('.pf_menucontent').slideUp('slow');
		if (jQuery.browser.msie  && parseInt(jQuery.browser.version) <= 8) {
		} else {
			jQuery(this).parent().find('.pf_indicator').rotate({animateTo:0});	
		}
	});
	
	jQuery('.mascot_head').jrumble({
		rangeX: 0,
		rangeY: 2,
		rangeRot: 5,
		rumbleEvent: 'constant',
		rumbleSpeed: 100
	});
	
	// Shop page
	
	jQuery('.hidder').hide();
	
	jQuery('.pf_showfilter').toggle(function() {
		jQuery('.hidder').show('slow');
		//jQuery('#productfilter').show('slow');
		jQuery(this).text("Hide Product Options");
	}, function() {
		jQuery('.hidder').hide('slow');
		//jQuery('#productfilter').hide('slow');
		jQuery(this).text("Show Product Options");
	});
	
});
