$(document).ready(function() {
	// Carousel
	$('#content').cycle({
		fx:	'fade', 
		speed: 500, 
		timeout: 0, 
		next: '#next', 
		prev: '#prev'
	});
	// Carousel
	$('#content.top').cycle({
		fx:	'fade', 
		speed: 500, 
		timeout: 7000, 
		next: '#next', 
		prev: '#prev'
	});
	//Control Btn
	var postfix = '_ov';
	$('.carouselNav a img').not('[src*="'+ postfix +'."]').each(function() {
		var img = $(this);
		var src = img.attr('src');
		var src_on = src.substr(0, src.lastIndexOf('.'))
		           + postfix
		           + src.substring(src.lastIndexOf('.'));
		$('<img>').attr('src', src_on);
		img.hover(
			function() {
				img.attr('src', src_on);
			},
			function() {
				img.attr('src', src);
			}
		);
	});
});
