/**
 * 	Layout JS.
 *		Change layout, called at end of template index.php
 *
 *		Version: 0.0.1
 *		Created: Wed, 20 Jul 2011 14:49:24 +0200	(Daantje ruig.com)
 *		Updated: Tue, 09 Aug 2011 11:15:55 +0200	(Ken ruig.com)
 */
	
	$('.prices').hide();
	
	//kill clear on menus...
	$('.module_contents ul li a').removeClass('clear');
	
	//rebuild shop item detail images
	if($('.article img, .store_module .item_details,.store_module .listing .thumb img').length){
		$('.article img,.store_module .item_details .preview img,.store_module .listing .thumb img').each(function(){
			if((!$(this).attr('border') || $(this).attr('border') == '0') && $(this).parents('.store_module').length == 0){
				//nope?
			}else{
				//makeRoundedImage($(this),5);
				$(this).corner();
			}
		});
	}
