/*
 * based on jQuery
 * @author Oleg Slobodskoi aka Kof
 */

(function($){
	$(document).ready(function(){
		
		//animate navigation
		$('#ordernav a').hover(function(){
			!$(this).hasClass('active') && $(this).animate({paddingTop: 10,paddingBottom: 10},200).css('color', '#0099E1');
		}, function(){
			!$(this).hasClass('active') && $(this).animate({paddingTop: 5, paddingBottom: 5},200).css('color', '#666');
		});
		
	});

	
	// Switch galleryview / listview	
	switchview = function ( id ) {
		$('#page-container').attr('class', id);	
	};

    /*
	langshow = function ( sw ) {	
		 $('#langlist')[sw == 'in' ? 'show' : 'hide']();
	};
    */
   
    /* XXX
     * lang selection is also on some other page without jquery
     */
    langshow = function (sw){
        document.getElementById('langlist').style.display = (sw == 'in') ? 'block' : 'none';
    }
	
})(jQuery);


