
var $j = jQuery.noConflict();

$j(document).ready(function() {
	observeScrollables();
});

function observeScrollables() {

	if ($j('#geschenkverpackung').length > 0) {
		$j('.upsell').css('width', '640px');
		$j('.product_scroller').css('width', '480px');
	}

	$j('.product_scroller').scrollable().circular();
}
