$(function(){
	
	//IE specific
	if ($.browser.msie) {
		
		
		//IE6 specific

			$('#additional-info h2:first').addClass('first-child');

	}
	
	//Round corners
	$('#nav, #footer, .shop-bar').corner();

	//List
	$('#items li:nth-child(5n)').addClass('new-row');
	
	//Collapsible
	$('#content p.collapse').each(function(){
		var input = $('input:checkbox', $(this));
		var box = $(this).next('fieldset');
		
		//box.slideUp(1);
		
		input.change(function(){
			if ($(this).is(':checked')) box.slideDown('normal')
			else box.slideUp('normal');
		});
	});
	
	$('#accountIcons p').each(function(){
		var src = $('a', $(this)).attr('href');
		$(this).click(function(){
			document.location.href = src;
		})
	});
	
	//Table
	$('table tbody tr:odd').addClass('odd');
	
});

