$(function() {	
	$("a[rel*='clearbox[item]']").attr('rel', 'clearboxd[gallery=]');
	
	//prepend span to each nav item
	$('#nav li a').each(function() {
		$(this).prepend('<span>');
		$(this).find('span').css('width', $(this).width());
	});
	
	$('.product').each(function(i) {
		$(this).mouseover(function() {
			$(this).addClass('active');
		}).mouseout(function() {
			$(this).removeClass('active');
		});
	});
	
	$('.choose-category').click(function() {
		$(this).toggleClass('active');
		$('#categories-list').animate({'opacity': 'toggle'});
	});
	
	$('.images img').css('opacity', 1);
	$('.images img').mouseover(function() {
		$(this).stop().animate({'opacity': .7});
	}).mouseout(function() {
		$(this).stop().animate({'opacity': 1});
	});
});
