var Calabazas = {
	
	start: function(){
		Calabazas.menu_izq();
		Calabazas.galeria_fotos();
		Calabazas.acordeon();
		Calabazas.menu_idiomas();
		Calabazas.cambio_videos();
		$(document).pngFix();
		Calabazas.burbujas();
		$('h2.sublogo').css('cursor', 'pointer').click(function(){
			window.open('http://www.kernelexport.es/');
		});
	},
	
	menu_izq: function(){
		$('ul#izq li a').each(function(){
			var ruta_img = $(this).children().attr('src').replace(/off/gi,'on');;
			var img = $('<img>').attr('src', ruta_img);
			$(this).mouseover(function(){
				$(this).children().attr('src', ruta_img);
			}).mouseout(function(){
				$(this).children().attr('src', ruta_img.replace(/on/gi,'off'));
			});
		});
	},
	
	menu_idiomas: function(){
		$('ul#enlaces_idiomas li a').each(function(){
			var ruta_img = $(this).children().attr('src').replace(/off/gi,'on');
			var img = $('<img>').attr('src', ruta_img);
			$(this).mouseover(function(){
				$(this).children().attr('src', ruta_img); 
			}).mouseout(function(){
				$(this).children().attr('src', ruta_img.replace(/on/gi,'off'));
			});
			$(document).pngFix();
		});
	},
	
	galeria_fotos: function(){
		if ($('body').hasClass('es')) {
			$.superbox.settings = {
				loadTxt: "Cargando...", // Loading text
				closeTxt: "[x] Cerrar", // "Close" button text
				prevTxt: "&lArr; Anterior", // "Previous" button text
				nextTxt: "Siguiente &rArr;" // "Next" button text
			};
		}
		else if ($('body').hasClass('en')) {
			$.superbox.settings = {
				loadTxt: "Loading...", // Loading text
				closeTxt: "[x] Close", // "Close" button text
				prevTxt: "&lArr; Previous", // "Previous" button text
				nextTxt: "Next &rArr;" // "Next" button text
			};
		}else{
			$.superbox.settings = {
				loadTxt: "Loading...", // Loading text
				closeTxt: "[x] Close", // "Close" button text
				prevTxt: "&lArr; Vorige", // "Previous" button text
				nextTxt: "Volgende &rArr;" // "Next" button text
			};	
		}
		$.superbox();
		$('#galeria_fotos li').mouseover(function(){
			$('#galeria_fotos li').not($(this)).stop().fadeTo(200, 0.6);
		}).mouseout(function(){
			$('#galeria_fotos li').not($(this)).stop().fadeTo(200, 1);
		});
	},
	
	acordeon: function(){
		$('#recetas .receta').children('dl').hide();
		$('#recetas .receta h3').css('cursor', 'pointer').click(function(){
			$('#recetas .receta').not($(this).parent()).children('dl').slideUp();
			$(this).parent().children('dl').slideDown();
		});
	},
	
	cambio_videos: function(){
		$('#videos .video').not(':first').hide();
		$('#videos p a:first').addClass('actual');
		$('#videos p a').click(function(){
			$('#videos .video').hide();
			$('#videos .video').filter(this.hash).show();
			$('#videos p a.actual').removeClass('actual');
			$(this).addClass('actual');
			return false;
		});
	},
	
	burbujas: function(){
		$('#izq a').attr('title', '');
		$('#der a[title]').qtip({ 
			style: { 
				name: 'dark', 
				tip: 'bottomLeft',
				border: {
					width: 2,
         			radius: 8
      			}
			},
			position: {
				adjust: {
					x: -50,
					y: -198
				}
			} 
		});
	}
	
}

$(document).ready(Calabazas.start);
