jQuery(function(){
   
	//entire box clickable!
	jQuery('.nota, .feature').click(function(){
		window.location = jQuery(this).find('a').attr('href');
	});
	
	//video wrapper!	
	jQuery('.post-content object').wrap('<p class="tv"/>');
	
	//hovering notas!
	jQuery('.nota, .feature').hover(function(){
		jQuery(this).find('span, a').css('color', '#d79809');
	},function(){
		jQuery(this).find('span, a').css('color', '#ffffff');
	});
	
	
	//clicking top nav!
	jQuery('#nav-novedades, #nav-fotos, #nav-notas, #nav-oldsite').mousedown(function(){
		jQuery(this).css('marginTop', '3px');
	});	
	jQuery('#nav-novedades, #nav-fotos, #nav-notas, #nav-oldsite').mouseup(function(){
		jQuery(this).css('marginTop', '0');
	});	
	
	//clicking notas!
	jQuery('.nota').mousedown(function(){
		jQuery(this).children('div.nota-title-wrap').css('top', '131px');
	});	
	jQuery('.nota').mouseup(function(){
		jQuery(this).children('div.nota-title-wrap').css('top', '130px');
	});
	
	//clicking mini-thumbs!
	jQuery('.feature.left').mousedown(function(){
		jQuery(this).children('h4').css('top', '46px');
	});	
	jQuery('.feature.left').mouseup(function(){
		jQuery(this).children('h4').css('top', '45px');
	});
	
	//links externos en ventana nueva!
	jQuery('#krydd a').click(function(){
		jQuery(this).attr('target', '_blank');
	});
				
	/*
	jQuery('div.ngg-gallery-thumbnail').hover(function(){
		href = jQuery(this).find('a').attr('href');
		rel = jQuery(this).find('a').attr('rel');
		jQuery(this).append('<a class="thickbox overlay" href="' + href + '" rel="' + rel + '/>');					
			},function(){
				jQuery('.overlay').remove();				
			});
	*/		

	
});
