	$(document).ready(
		function(){

			$("img").lazyload({
				placeholder : "/images/interface/blank.gif",
				effect : "fadeIn",
				threshold:200
    });
			$('#slideshow').cycle('fade');
			
			$('#gallery').cycle({
        		fx:     'fade',
        		speed:  'fast',
        		prev:   '#prev1', 
   				next:   '#next1',
        		timeout: 0,
        		pager:  '#galleryThumbs ',
        		pagerAnchorBuilder: function(idx, slide) {
        	   	 // return sel string for existing anchor
        	   	 return '#galleryThumbs li:eq(' + (idx) + ') a';
        			}		
    			});
    	
    		$('#holder').cycle({
     			  fx:     'fade',
        			speed:  'fast',
        			prev:   '#prev1', 
   					next:   '#next1',
        			timeout: 0,
        			pager:  '#nav',
        			pagerAnchorBuilder: function(idx, slide) {
            		// return sel string for existing anchor
            		return '#nav li:eq(' + (idx) + ') a';
        		}
    		});

		$("a[rel$='external']").click(function(){
     		this.target = "_blank";
		});

    });
