$(document).ready(function($){

	if ($('ul').length > 0 ) {
		$("ul").each(function() {
			$(this).find("> li:first").addClass('li_first');
			$(this).find("> li:last").addClass('li_last');
			$(this).find("> li:even").addClass('li_even');
			$(this).find("> li:odd").addClass('li_odd');
	    }); 
    }
    
    $('#sub_nav li.current').append('<span class="sub_nav_marker" />');
    $('a[href^=http://]').attr('target', '_blank');
    $('#SearchForm_SearchForm_Search').inputclear();
    $('.search a').click(function() {
    	$('#SearchForm_SearchForm').submit();
    });
    
    if ($('#multimedia_scroller').length > 0) {
	    $('#multimedia_scroller').jcarousel({
	        scroll: 1,
	        initCallback: mycarousel_initCallback,
	        // This tells jCarousel NOT to autobuild prev/next buttons
	        buttonNextHTML: null,
	        buttonPrevHTML: null
	    }).find('a').fancybox();
	}
	
	if ($('#gallery_module').length > 0) {
		$('#gallery_module').find('li').equalHeights().find('a').fancybox();
	}
	
});

function mycarousel_initCallback(carousel) {
    jQuery('.multimedia a[href*=scroll_next]').bind('click', function() {
        carousel.next();
        return false;
    });

    jQuery('.multimedia a[href*=scroll_prev]').bind('click', function() {
        carousel.prev();
        return false;
    });
};
