﻿//
// Poner aca las cosas chicas que no ameriten crear un .js nuevo
//
//
$(document).ready(function() {
	// Muestra y oculta los menús
	
	$('div.submenu:has(div)').hover(
		function(e) {
			$(this).find('.listado').fadeIn('fast');
		},
		function(e) {
			$(this).find('.listado').hide();
		}
	);
	
	
	$('div.item .imagen a').hover(
		function(e) {
			$(this).closest('.imagen').css('border-color', '#ec008c');
		},
		function(e) {
			$(this).closest('.imagen').css('border-color', '#bfbfbf');
		}
	);
	
	
	// DISPARA VIDEO
	
	$( "#video-tut-dialog:ui-dialog" ).dialog( "destroy" );
	
	$( "#video-tut-dialog" ).dialog({
		autoOpen: false,
		height: 420,
		width: 600
	});

	$( "#video-tut" ).click(function() {
		$( "#video-tut-dialog" ).dialog( "open" );
		return false;
	});	
	
	
});
