$(function() {
	//environment-shot slideshow - example: CYLT
    $('#product-environment-shots-album').cycle({
        fx: 'scrollLeft',
        pause: 1,
        next: '#next_shot',
        prev: '#previous_shot'
    });
    
    $('#share_button').html('<a href="http://www.addthis.com/bookmark.php?v=250" onmouseover="return addthis_open(this, \'\', \'[URL]\', \'[TITLE]\')" onmouseout="addthis_close()" onclick="return addthis_sendto()"><img src="http://s7.addthis.com/static/btn/sm-share-en.gif" width="83" height="16" alt="Bookmark and Share" style="border:0"/></a><script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js?pub=mstralka"></script>');

    //jquery-lightbox-balupton
    $('#product-environment-shots-album a.lightbox').lightbox({
        show_info: true,
        show_extended_info: true,
        download_link: true,
        padding: 40,
        ie6_upgrade: false,
        show_linkback: false,
        show_helper_text: false
    });
    //AMLX-49
    $('#magnify_shot').click(function() {
    	//find the visible environment shot
    	var htm = '';
    	$('#product-environment-shots-album a:visible').each(function() {
    		//htm = $(this).html();
    		$(this).click();
    	});
    	return false;
    });
	
	//AMLX-98 highlight the 'Products' link in the menu
	$('#nav a[href$="/products"]').addClass('active');
	$('#nav a[href$="/products"]').parents('li:first').addClass('active');
});