﻿$(document).ready(function() {
	$('.menu').toggle(
		function(){
			$('.subMenu').hide();
			$(this).next('ul').slideDown("fast");
		},
		function(){
			$(this).next('ul').slideUp("fast");
		}
	);
	$('.sale').corner("round 8px").parent().css('padding', '2px').corner("round 10px");
	$('.homepageText').corner("round 8px").parent().css('padding', '2px').corner("round 10px");

});
