$(document).ready(function() {
	
	$('.slider-carousel ul').jcarousel({
		'scroll' : 1,
		'auto': 10,
		'buttonNextHTML': '',
		'buttonPrevHTML': '',
		'initCallback':  init_carousel,
		'wrap': 'both'
	});
		
	if ($.browser.msie && $.browser.version.substr(0,1)<7) {
		DD_belatedPNG.fix('#header .img, h1#logo a ,.slider-nav a ,.button ,#navigation ,.main-bg-bottom  ,.frame');
	};
	
});
function init_carousel(carousel) {
		$('.slider .slider-nav a.prev').click(function(){
			carousel.prev();
			return false;
		});
		
		$('.slider .slider-nav a.next').click(function(){
			carousel.next();
			return false;
		});
	};
