$(function() { 
	$("#tabs").tabs();
	$("button, input:submit, input:button").button();	
	$(".progress-bar").progressbar({
		value: 0
	});
	$('.video-dialog').dialog({
		autoOpen: false,
		show: 'blind',
		hide: 'blind',
		modal: true,	
		draggable: false,
		resizable: false,
		width: 347	
	});	
	$('.thumbnail-dialog').dialog({
		autoOpen: false,
		show: 'blind',
		hide: 'blind',
		modal: true,
		height: 300,
		draggable: false,
		resizable: false,
		width: 404		
	});	
	$('.item-added-dialog').dialog({
		modal: true,
		autoOpen: false,
		buttons: {
			Close: function() {
				$(this).dialog('close');
			},
			'Checkout Now': function() {
				window.location = '/checkout';
			}			
		}
	});
	$('.dialog').dialog({
		autoOpen: false,
		show: 'blind',
		hide: 'blind',
		modal: true,	
		draggable: false,
		resizable: false,
		width: 347, 		
		buttons: {
			Ok: function() {
				$(this).dialog('close');
			}
		}
	});			
	$('.slider').slider();			
	$("#accordion").accordion({
		autoHeight: false
	});	
	
	$('ul.products li a.product').hoverIntent(config);
	$('ul.products li a.product').mousemove(function(e) {
		$(this).parent('li').children('div.video-preview').css('left', e.pageX + 20);
		$(this).parent('li').children('div.video-preview').css('top', e.pageY + 20);
	});	
	
	$('ul.slide li').hover(function() {
		if($(this).children('ul:animated').size() == 0) {
			  $(this).children('ul').slideDown(500);		 
		}		
	}, function() {
		if($(this).children('ul:animated').size() == 0) {
			  $(this).children('ul').slideUp(500);		 
		}		
	});
});

var config = {
	over: function() {
		$(this).parent('li').children('div.video-preview').show();
	},
	interval: 300,
	timeout: 0,
	out: function() {
		$(this).parent('li').children('div.video-preview').hide();
	}
}

var RecaptchaOptions = {
	theme : 'clean'
};

