$(document).ready(function(){
	$("#short-info").hover(function()
	{
		$("#cart-items").slideDown();
	},
	function()
	{
		$("#cart-items").slideUp();
	});
	$("#menu-horizontal li").hover( function() { $(this).addClass("iehover"); }, function() { $(this).removeClass("iehover"); } ); 
	$(".menu li").hover(
      function () {
		$(this).find('ul').css("display","block");
      }, 
      function () {
		$(this).find('ul').css("display","none");
      }
    );
	$(".menu li ul").hover(
      function () {
		$('#informacion').addClass("hover");
      }, 
      function () {
		$('#informacion').removeClass("hover");
      }
    );	
	$('.slide_proyectores').cycle({
			fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
			speed:    450, 
			timeout:  6500 
		});
	$("a[rel='prettyPhoto']").prettyPhoto();
});

function isset(variable_name) {
    try {
         if (typeof(eval(variable_name)) != 'undefined')
         if (eval(variable_name) != null)
         return true;
     } catch(e) { }
    return false;
   }
