/*!
 * Copyright 2011 Pebble Design Pty Ltd. All Rights Reserved.
 * All JS libraries copyrighted to their respective owners.
 * Authors: Reiss Watts, Gary Swanepoel //////////////////
 * //////////////////////////////////////////////////////
 * JavaScript: Custom.js
 */

/*!
 * Run before HTML is loaded
 */

(function($) {

	//alert("START - Custom.js");

/*-- START ------------------------------------*/



/*-- END --------------------------------------*/

	//alert("END - Custom.js");

})(jQuery);

/*!
 * Run after HTML is loaded
 */

jQuery(document).ready(function($) {

	//alert("START - Custom.js - DOM Ready");

/*-- START ------------------------------------*/

    /* STORE FINDER */
	$('div.store-cat > h2').click(function () {
	    $(this).parent().find('div.store-dropdown').toggle(300);
	});

/*-- END --------------------------------------*/

	//alert("END - Custom.js - DOM Ready");

});
