$(document).ready(function(){
	$(".rating").stars({
		inputType: "select",
		disabled: "disabled"
	});
	
	$('ul.webshops li').mouseover(function(){
		$('.webshop_info', $(this)).show();
	});
	
	$('ul.webshops li').mouseleave(function(){
		$('.webshop_info', $(this)).hide();
	});
	
	$('a.close').click(function(){
		$(this).closest('div.webshop_info').hide();
		return false;
	});
	
	$('.product form a').click(function(e){
		if ($(this).attr('href') == '#')
		{
			form = $(this).parents('form').submit();
			e.preventDefault();
		}
	});
	
	$('a.additem').click(function(e){
		if ($(this).attr('href') == '#')
		{
			form = $(this).parent().find('form').submit();
			e.preventDefault();
		}
	});
});
