/* for slider */

$(function(){
	// Set starting slide to 1
	var startSlide = 1;
	// Get slide number if it exists
	if (window.location.hash) {
		startSlide = window.location.hash.replace('#','');
	}
	// Initialize Slides
	$('#slides').slides({
		preload: false, //true was causing problems loading image of artists
		//preloadImage: 'img/loading.gif',
		generatePagination: true,
		play: 5000,
		pause: 2500,
		hoverPause: true,
		// Get the starting slide
		start: startSlide,
		animationComplete: function(current){
			// Set the slide number as a hash
			window.location.hash = '#' + current;
		}
	});
});

/* for twitter plug-in */

getTwitters('daybreak_twitter1', {
    id: 'apacherelay', 
    //prefix: '<a href="http://twitter.com/%screen_name%">%name%</a> said: ', 
    clearContents: true, // leave the original message in place
    count: 3, 
    withFriends: true,
    ignoreReplies: false,
    newwindow: true
});

getTwitters('daybreak_twitter2', {
    id: 'JDSouther', 
    //prefix: '<a href="http://twitter.com/%screen_name%">%name%</a> said: ', 
    clearContents: true, // leave the original message in place
    count: 3, 
    withFriends: true,
    ignoreReplies: false,
    newwindow: true
});

getTwitters('daybreak_twitter3', {
    id: 'jillandrews', 
    //prefix: '<a href="http://twitter.com/%screen_name%">%name%</a> said: ', 
    clearContents: true, // leave the original message in place
    count: 3, 
    withFriends: true,
    ignoreReplies: false,
    newwindow: true
});

/* valid target="_blank" alternative */

$(document).ready( function() {
	$('a[rel="external"]').click( function() {
		window.open( $(this).attr('href') );
		return false;
	});
});
