(function($){
	$('document').ready(function(){
		$('[rel=popup]').click(function(e){
			e.preventDefault();
			window.open($(this).attr('href'), '', 'width=550,height=550,scrollbars=0,resizable=1,location=0');
		});
		$('[rel=external]').click(function(e){
			e.preventDefault();
			window.open($(this).attr('href'), '', 'width=924,height=668,scrollbars=0,resizable=1,location=0');
		});
		$('#item_form').submit(function(e){
			$.each($(this).find('select'), function(){
				if($(this).val() == "")
				{
					e.preventDefault();
					$('.item_left .description .error').show(100);
					return;
				}
			});
		});
	});
})(jQuery);
