// JavaScript Document
/// Rollover Image
$(document).ready(function(){
    //$('ul#top_navigation li > .SimpleSideNav > ul.sf, ul#nav li > .SimpleSideNav > ul.sf').droppy(); 
//	$('ul#promotion-img').innerfade({
//						speed: 2000,
//						timeout: 4000,
//						type: 'sequence',
//						containerheight: '244px'
//					});
//	$("div.ngg-gallery-thumbnail a, a.fancybox").fancybox({
//	"imageScale" : true, 
//	"zoomOpacity" : false,	
//	"zoomSpeedIn" : 800,
//	"zoomSpeedOut" : 800,
//	"zoomSpeedChange" : 800
//	});
//	
//	$("li.current_page_item > a").addClass("active");
	
	$('a.restaurant_en, a.menu_en, a.new_en, a.gallery_en, a.links_en, a.contacts_en, a.restaurant, a.menu, a.new, a.gallery, a.links, a.contacts,')
	.css( {backgroundPosition: "0 -22px"} )
	.mouseover(function(){
		$(this).stop().animate(
			{backgroundPosition:"(0 0)"}, 
			{duration:300})
		})
	.mouseout(function(){
		$(this).stop().animate(
			{backgroundPosition:"(0 -22px)"}, 
			{duration:300})
		})
	
	// initialize scrollable  
   $("div.scrollable").scrollable({ size:3});
   
   $('.scrollable div.items div a')
	.css( {opacity: "0.7"} )
	.mouseover(function(){
		$(this).stop().animate(
			{opacity: "1"}, 
			{duration:600})
		})
	.mouseout(function(){
		$(this).stop().animate(
			{opacity: "0.7"}, 
			{duration:600})
		})
	$("a.fancybox:not(.aimg)'").fancybox({
	"imageScale" : true, 
	"zoomOpacity" : false,	
	"zoomSpeedIn" : 800,
	"zoomSpeedOut" : 800,
	"zoomSpeedChange" : 800
	});
	
	// initialize innerfade 
	$('.photo ul').innerfade({ animationtype: 'fade', speed: 4000, timeout: 5000, type: 'sequence' }); 
});




