//banner functions
$(document).ready(function(){
	$('ul#bannerimages').innerfade({
		speed: 1000,
		timeout: 5000,
		type: 'sequence',
		containerheight: 	'360px',
		slide_timer_on: 	'yes',
		slide_ui_parent: 	'bannerimages',
		slide_ui_text:		'bannerimages-text',
		slide_nav_id:		'slide_nav'
	});
	$.setOptionsButtonEvent();
	$("#next_button").click(function() {
		$.next();
	});
	$("#next_button").hover(
		function () {
			$('#next_button').css("background-position", "0 -40px");
		},
		function () {
			$('#next_button').css("background-position", "0 0");
		}
	);
	$("#prev_button").click(function() {
		$.prev();
	});
	$("#prev_button").hover(
		function () {
			$('#prev_button').css("background-position", "0 -40px");
		},
		function () {
			$('#prev_button').css("background-position", "0 0");
		}
	);
});
