$(document).ready(function() {
	$('#main #body-nav ul li a.drop').click(function() {
		$(this).toggleClass('open').parents('li').children('ul').slideToggle();												 
	});
	$('#main #content .product-listing li').css('cursor', 'pointer').click(function() {
		window.location = $('a', this).attr('href');
	});
	
	$('#cat-toggle select').change(function() {
	    $(this).parents('form').submit();
	});
	$('.tab-group').tabs();
});
