$(document).ready(function() {

	$('#bb_prev').empty();  
	$('#bb_next').empty();  
	$('#bb_prev').hover(
		function () {
		if($(this).attr('id') == 'bb_prev') {
			$(this).css({
				'background-position': '0px -18px'});
		} else {
			$(this).css({
				'background-position': '-28px -18px'
			});
		}
		},
		function () {
		if($(this).attr('id') == 'bb_prev') {
			$(this).css({
				'background-position': '0px 0px'});
		} else {
			$(this).css({
				'background-position': '-28px 0px'
			});
		}
		}
	);  
	$('#bb_next').hover(
		function () {
		if($(this).attr('id') == 'bb_prev') {
			$(this).css({
				'background-position': '0px -18px'});
		} else {
			$(this).css({
				'background-position': '-28px -18px'
			});
		}
		},
		function () {
		if($(this).attr('id') == 'bb_prev') {
			$(this).css({
				'background-position': '0px 0px'});
		} else {
			$(this).css({
				'background-position': '-28px 0px'
			});
		}
		});  
	
	$('#bb_content_fx').cycle({  
		prev    : '#bb_prev',  
		next    : '#bb_next',  
		timeout : 4000,  
		pause   : 1,
		fx: 'scrollVert'
		});  
});  

