$(document).ready(function(){

	// Load slideshow on frontpage

    $('#slideshow').cycle({
        speed:       4000,
        timeout:     4000,
		pagerAnchorBuilder: function(idx, slide) { 
			return '<a href="#"><span>' + $(slide).attr('title') +  '</span></a>'; 
 
		}				
    });
    
    // Load external links in a new window
    
    $("#frame a[href^='http://']").not("a[href^='http://mediasenseinternational.com']").not("a[href^='http://www.mediasenseinternational.com']").click(function(){
		window.open(this.href,'external');
		return false;
	});

	// Add Icons to PDF, DOC and ZIP Files
   
    /*
$("a[@href$=pdf]").addClass("pdf");

	$("a[@href$=zip]").addClass("zip");
	
	$("a[@href$=zip]").addClass("doc");
	
	$("a:not([@href*=http://mediasenseinternational.com])").not("[href^=#]")
		.addClass("external")
		.attr({ target: "_blank" });
*/
       
});

