
//
//	jQuery
//
$(document).ready(function(){
		
	//
	// Session Links
	//
	$("#classic_cinema").mouseover(function() {
		$(this).attr({ src: '/images/circle_kitchen/classic_cinema_button_ova.jpg' });
	}).mouseout(function() {
		$(this).attr({ src: '/images/circle_kitchen/classic_cinema_button.jpg' });
	});
		
	$("#circle_cinema").mouseover(function() {
		$(this).attr({ src: '/images/circle_kitchen/circle_lounge_button_ova.jpg' });
	}).mouseout(function() {
		$(this).attr({ src: '/images/circle_kitchen/circle_lounge_button.jpg' });
	});

});