document.doSubmit = function() {
	document.getElementById("offer_enquiry").submit();
}

function offerEnquiry(qty,offertitle) {
	document.getElementById('quantity').value = qty;
	document.getElementById('offer_title').value = offertitle;
	setTimeout("document.doSubmit();", 50);
	return false;
}

$(document).ready(function(){
	$('.each_item').parent().mouseover( function(){
		$(this).addClass('hoveroffer');
		$(this).css('cursor','hand');
		$(this).css('cursor','pointer');
	}).mouseout(function() {
		$(this).removeClass('hoveroffer');
		$(this).css('cursor','default');
	}).click( function() {
		quantity = $(this).parent().parent().children('tr').children('th').eq($(this).parent().children().index($(this))).text();
		product = $('h2').eq($($('#left_container')).children('.price_table').index($(this).parent().parent().parent())).text();
		offerEnquiry(quantity,product);
	});
	$('a[href=#]').click(function() {
		offerEnquiry('Order / Enquiry',$('h2').eq($('a[href=#]').index($(this))).text());
		return false;
	});

});