function $id(id) {
	return document.getElementById(id);
}

function flip(id) {
	$id(id).style.display = ($id(id).style.display == 'none') ? 'block' : 'none';
}
$("a[href^=#][href!=#]").live('click',function(e){
	$('html,body').animate({'scrollTop': $($(this).attr('href')).offset().top+'px'});
	e.preventDefault();
});
$(function(){
	$('input').keydown(function(e){
		if (e.keyCode == 13) {
			$(this).parents('form').find('input[type=submit]').click();
			return false;
		}
	});
});
$(document).ready(function()
{
	$(".skuimg").mouseover(function() {
		$("#prodimg").attr("src",$(this).attr("rel"));
		$(".a_prodimg").attr("href",$(this).attr("rel").replace('_full','_expanded'));
	});
	$('#like').click(function(){
		$.get('/inc/ajax/like.cfm',{action:'wall',id:$(this).attr('rel')});
		$(this).hide().css({cursor:'auto',color:'#999'});
		$('#liket').show()
		setTimeout(function(){
			$('#liket').hide();
			$('#like').show();
		},3000);
	});

});
