/*** Author: 

***/
$(document).ready(function(){
	$('article#features img').each(function(i){
			old_img = $(this).attr('src');
			new_img = 'includes/functions/timthumb.php?src=' + old_img + '&w=300&h=150&q=100&zc=0';
			$(this).attr('src',new_img).addClass('features_img').before('<hr class="clear">');
	});
	$('button').click(function(){
		$.post("/HSC/includes/additem.php", {'qty' : 1});
	})
});
