$(document).ready(function(){
//   $('#colors a').click(function(event) { 
//		event.preventDefault();
//		// Change active state for #colors
//		$('#colors li').removeClass('active');
//		$(this).parent().addClass('active');
//		var value_rel = $(this).attr("rel");
//		$("#product_color").attr({value: value_rel });
//		var value_input = $('#product_color').attr('value');
//		var title = $(this).text();
//		$('#colors span').text(title);
//	});
//	$('#product_img_thumbs a').click(function(event) { 
//		event.preventDefault();
//		var href = $(this).attr('href');
//		$('#product_img_big').fadeOut('medium');
//		$('#product_img_big').attr({src: href });
//		$('#product_img_big').fadeIn('medium');
//	});
	$('#sidebar .top>li>a').click(function(event) { 
		if($(this).parent().children('ul').get(0) && !$(this).parent().hasClass('open')) {
			event.preventDefault();
			$('#sidebar .open ul').slideUp('slow');
			$(this).parent().children('ul').slideDown('slow');
			$('#sidebar .top li').removeClass('open');
			$(this).parent().addClass('open');
		}
	});
	$('#subscribe').click(function(e) {
			e.preventDefault();
			var href = $(this).attr('href');
			$.nyroModalManual({
				url: href,
				width: 354,
				height: 170,
				minHeight: 170,
				minWidth: 354
			});
			return false;
		});

 });

