$(document).ready(function() {

	$(".homeproductlink img").toggle(function() {
		$(this).parent().parent().children('.subcategories').slideDown(300);
		$(this).attr("src",'/images/hide.jpg');
	}, function() {
		$(this).parent().parent().children('.subcategories').slideUp(300);
		$(this).attr("src",'/images/more-button.jpg');
	});

});
