// Initializes User Scripts:

$(document).ready(function() {
	
	// Selects the text in the textboxes upon focus:
	$('input.txtSearch').focus(function() {
		this.select();
	});
	
	// Initialize the Menu:
	startMenu();
	
	// Expand the Designers menu when clicked:
//	$('div#dressSelect').click(
//		function() {
//			$(this).addClass('open');
//	});
	
	$('div#dressSelect dl').hover(
		function() {
			$(this).find('dd').fadeIn(150);
	},
		function() {
			$(this).find('dd').hide();
	});
	
	
	
	// Smartz Link - pop up in new window / tab:
	$('a#smartzLink').click(function() {
		window.open($(this).attr("href"),'smartz', '');
		return false;
	});
	
});