$.noConflict();
var table;
jQuery(document).ready(function($) {
	jQuery('.product-image a').hover(
		function () {
			table = jQuery(this).parent().next();
			jQuery(table).find('.designer a').css('color', '#692C57');
			jQuery(table).find('h5 a').css('color', '#692C57');
	  	},
		function () {
			table = jQuery(this).parent().next();
			jQuery(table).find('.designer a').css('color', '');
			jQuery(table).find('h5 a').css('color', '');
	  	}
	);
});
