$(document).ready(function () {
	$('#gallery').cycle({ 
		fx:     'fade', 
	   	speed:  1000, 
		timeout: 3000, 
		next:   '#banner_right_arrow', 
		prev:   '#banner_left_arrow' 
	});
	var coord = $('#gallery').offset();
	$('#banner_selector_container').offset({top: coord.top + 316 , left: coord.left + 9});
	

	$('div.menu_item').bind({ 'mouseenter' :function(item) {
			$('#top_div_main_menu').addClass('top_menu_element_bg_'+this.id.substr(10));
			
		}
	});
	$('div.menu_item').bind({ 'mouseout' :function(item) {
			$('#top_div_main_menu').removeClass('top_menu_element_bg_'+this.id.substr(10));
			
		}
	});
	$('#banner_left_arrow').bind({ 'click' :function(item) {

		}
	});
	
	$('#banner_right_arrow').bind({ 'click' :function(item) {

		}
	});
	
	
});

