// External Links
function externalLinks() {
	if (!document.getElementsByTagName) return;
	var anchors = document.getElementsByTagName("a");
	for (var i=0; i<anchors.length; i++) {
	var anchor = anchors[i];
	if (anchor.getAttribute("href") && anchor.getAttribute("rel") == "external")
		anchor.target = "_blank";
	}
}
window.onload = externalLinks;
//Striped Table
function alternate(id){
	if(document.getElementsByTagName){  
		var table = document.getElementById(id);  
		var rows = table.getElementsByTagName('tr');  
	for(i = 0; i < rows.length; i++){          
		if(i % 2 != 0){
			rows[i].className='striped';
			}
		}
	}
}

jQuery(document).ready(function(){
	jQuery('#flash-home').cycle({fx:'fade',pause: 1});
});
 jQuery.noConflict();
  jQuery(document).ready(function() {
    jQuery('#flash-home').cycle({fx: 'fade', timeout:5000, speed:1000});
    jQuery('#flash-home img').click(function (){
      document.location.href = jQuery(this).attr('rel');
    }).css('cursor', 'pointer');
  });