// JavaScript Document
	$(document).ready(function(){	
				//slidedown del submenu
				$('.activo').click(
					function(){
						/*$(this).next().stop().animate({
						height:'toggle'//'120px'
						},200);*/
						$(this).next().slideToggle(500);
						});
					
				//fancybox a las imagenes
				$("a.lWOn").fancybox({
					'transitionIn'	:	'elastic',
					'transitionOut'	:	'elastic',
					'speedIn'		:	300, 
					'speedOut'		:	200, 
					'overlayShow'	:	true,
					'overlayColor'  :  '#000000',
					'titlePosition' :  'over'
				});
				$("a.lWOn2").click(function() {
                 	$.fancybox({
					'transitionIn'	:	'elastic',
					'transitionOut'	:	'elastic',
					'speedIn'		:	300, 
					'speedOut'		:	200, 
					'width'         :   640,
					'height'        :   480,
					'overlayShow'	:	true,
					'overlayColor'  :  '#000000',
					'titlePosition' :  'over',
					'href'          : $(this).attr('href'),
					'type' : 'swf',
      				'swf' : {'flashvars': 'variable='+ $(this).attr('rel')}
					});
					return false;
				});		
				$('#ul_submenu div a').css({backgroundPosition:'178px 0px'});
				$('#ul_submenu div a').hover(
				function(){
					$(this).stop().animate({ 
							backgroundPosition:'0px 0px'
							},300);
				},
				function(){
					$(this).stop().animate({ 
							backgroundPosition:'178px 0px'
							},600);
				});
				$('div.derecha').hover(
				function(){
					$(this).stop().animate({ 
							marginLeft:'45px'
							},300);
				},
				function(){
					$(this).stop().animate({ 
							marginLeft:'35px'
							},600);
				});
		});
