var curvyCornersNoAutoScan = true;
var $j = jQuery.noConflict();

$j(document).ready(function () {
	// enable typeface
	//if ($j.support.style) $j('h2, .bottomlinks a, .content_box p, .up-sell h3, .block h2, .home h2').addClass('typeface-js');
	// simple image rollover
	var img = $j('.product-image img:first');
	var imgsrc = img.attr('src');
	$j('.more-views a').hover(function(){
		img.attr('src', $j(this).attr('href'));
	},function(){
		img.attr('src', imgsrc);
	}).click(function(){
		img.attr('src', $j(this).attr('href'));
		return false;
	});
	
	//curvyCorners.init(); 
});

