$(document).ready(function() {
	// Create bxSlider carousels.
	$('#slides').bxSlider({
		infiniteLoop: 	true,
		auto: 			true,
		speed: 			500,
		pause: 			5000,
		controls: 		true,
		pager:			true
	});
	
	// Hover only works with anchor tags in IE6.
	$('.bx-wrapper').hover(function() {
		$('a.bx-prev, a.bx-next').show();
	}, function() {
		$('a.bx-prev, a.bx-next').hide();
	});
});
