

$(function() {
	



	/* Fadey form inputs */
	
	$('form.ddfm input.fmtext, form.ddfm textarea.fmtext, input.fmverify').focus(function() {
		$(this).stop().animate({ backgroundColor: '#ffffff' }, 500);
	}).blur(function() {
		$(this).stop().animate({ backgroundColor: '#cccccc' }, 0);
	});
	

	

	
// Facebook button

$('#fbfader').hover(function() {
	$(this).find('img').fadeOut(200);
	$(this).find('img').click(function() {
		window.location.href = 'http://www.facebook.com/pages/The-Golden-Scissors-Dorking/184141884976915';
	})
},function(){
	$(this).find('img').fadeIn(200);
	$(this).find('img').click(function() {
		window.location.href = 'http://www.facebook.com/pages/The-Golden-Scissors-Dorking/184141884976915';
	})
});
	

// Shop - remove right margin from every 4th item (last in each row)

$('ul.itemlist li:nth-child(4n+4)').each(function() {
	$(this).addClass('itemwrapperlastinrow')
});








});





