jQuery.noConflict();
jQuery(document).ready(function($){
		
	$('.buy_icon_button').mouseover(function(){
		$(this).addClass('buy_icon_hover');
	}).mouseout(function(){
		$(this).removeClass('buy_icon_hover');
		$(this).removeClass('buy_icon_click');
	});

	$('.buy_icon_button').mousedown(function(){
		$(this).addClass('buy_icon_click');
	}).mouseup(function(){
		$(this).removeClass('buy_icon_click');	
	});

// /DOM
});