$(document).ready(function() {

	$('body').addClass('js');

	$(".youTubeLink").colorbox({iframe:true, innerWidth:425, innerHeight:344});
	$('#galleryThumbs a').colorbox();
	$('.shopListing a.cboxElement').colorbox();

});

function clickButton(e, buttonid) {
	var evt = e ? e : window.event;
	var bt = document.getElementById(buttonid);

	if (bt) {
		if (evt.keyCode == 13) {
			bt.click();
			return false;
		}
	}
}
