// JavaScript Document
$(function() {
    $(".anyClass").jCarouselLite({
        btnNext: ".next",
        btnPrev: ".prev"
    });
});

function popGallery(link)
{
	width	= 330;
	height	= 400;
	win		= window.open(link, 'ih_gallery', 'width=' + width + ',height=' + height + ',scrollbars=1,resizable=0');
	win.moveTo(screen.width - width, 0);
	return false;
}


