// lightbox

    $(function() {
        $('.productimg a').lightBox();
    });

// Slide Show 
$(function() {
    $('#header').cycle();
});

// scroll to

$(document).ready(function() {

	$('a.panel').click(function () {

		$('a.panel').removeClass('selected');
		$(this).addClass('selected');
		
		$('#wrapper').scrollTo($(this).attr('href'), 800);		
		
		return false;
	});
	
});



