$(document).ready(function(){
	
	// Clear values from form fields
	$('input:text, input:password, textarea').focus(function(){
		if ($(this).val() == $(this).attr('title')) {
			$(this).val('');
		}
		$(this).blur(function(){
			if ($(this).val().length == 0) {
				$(this).val($(this).attr('title'));
			}
		});
	});
	
	// Main nav drop-down
	$('div.header ul li:not(div.header ul li ul li)').mouseenter(function(){
		$(this).children('ul').show();
		$(this).addClass('active');
		$('div.header ul li:not(div.header ul li ul li)').mouseleave(function(){
			$('div.header ul li ul').hide();
			$(this).removeClass('active');
		});
	});
	
	// Sidebar nav
	$('div.side_nav ul li.toggle a:not(div.side_nav ul li.toggle ul li a)').click(function(evt){
		$(this).siblings('ul').toggle();
		if ($(this).children('span.toggle_sign').text() == '-') {
			$(this).children('span.toggle_sign').text('+');
		} else {
			$(this).children('span.toggle_sign').text('-');
		}
		evt.preventDefault();
	});
	
	
	// Add values to Newsletter form
	$('div.connect form input').eq(0).attr('title', 'Name');
	$('div.connect form input').eq(1).attr('title', 'E-mail');
	
	// Product detail, image nav
	$('div.main_img a:not(a#img_lrg_1)').hide();
	$('div.thumbs a').click(function(e){
		img_id = $(this).attr('id').replace(/[^0-9]/g, '');
		$('div.main_img a').each(function(){
			($(this).attr('id') == 'img_lrg_'+img_id) ? $(this).show() : $(this).hide();
		});
		e.preventDefault();
	});
	$('a#lrg_img_link').click(function(e){
		$('div.main_img a:visible').click();
		e.preventDefault();
	});

});
