$(document).ready(function()
{
	$('ul.sf-menu').superfish({delay: 100, autoArrows: false, animation: {opacity:'show', height: 'show'}});
	$("a[rel^='prettyPhoto']").prettyPhoto({overlay_gallery: false,theme: 'dark_square'});
	$("a[rel^='zoombox']").prettyPhoto({overlay_gallery: false, theme: 'dark_square'});
	$('#offer-prodlist').find('tr').bind('click',function(t)
	{
		var link = $(this).find('a').eq(0).attr('href');
		document.location.href = link;
	});
	$('#offer-prodlist').find('tr').bind('mouseover',function(t)
	{
		$(this).css('cursor','pointer');
	});
	$('#offer-prodlist').find('tr').bind('mouseout',function(t)
	{
		$(this).css('cursor','default');

	});

});

