/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */


$(function(){
 $('.navigation li.normal a')
  .css( {
    
  } )
  .hover(function(){
    $(this).stop().animate({

      fontSize:"19px"

    }, {
      duration:200
    });

  },
  function(){
    $(this).stop().animate({
      fontSize:"15px"

    }, {
      duration:200,
      complete:function(){
        $(this).css({
          fontSize:"15px"
        });
      }
    });

  })
	$("a[rel^='prettyPhoto']").fancybox({
          'titleShow'		: false,
				'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	600,
		'speedOut'		:	200,
		'overlayShow'	:	false

			});
 /*$('.navigation li.current')
  .css( {
    backgroundPosition: "0 0px"
  } )
  .hover(function(){
    $(this).stop().animate({
      backgroundPosition:"(0 0px)"
    }, {
      duration:200
    })

  },
  function(){
    $(this).stop().animate({
      backgroundPosition:"(0 0px)"
    }, {
      duration:200,
      complete:function(){
        $(this).css({
          backgroundPosition: "0 0px"
        });
      }
    })
  })*/

})
