// JavaScript Document
jQuery(document).ready(function() {
	
	jQuery.noConflict();
	
	jQuery('#styleGallery-1 .priceList tr:not(:first, :even), #styleGallery-2 .priceList tr:not(:first, :odd)').css(
		{
		'background-color': '#dddddd',
		'color': '#666666'
		}
	);
	
	jQuery('#styleGallery-1 .priceList tr:first, #styleGallery-2 .priceList tr:first').css(
		{
		'font-weight': 'bold'
		}
	);
	
});
