$(document).ready(function(){
	
	$('#homeImages img:first').fadeIn(2000, function() {
        $('#homeImages').cycle({
	  			delay: 2000,
			    speed:    900, 
			    timeout:  5000
			}
		);
    });

	$("#homeBlurb").delay(1000).animate(
    	{"width": "657"}, 
		{duration: 800, 
		easing: 'linear',
		queue: 'true'}
 	  ).delay(300).animate(
    	{"height": "259"
		},600,function() {
		    $("#fadeTest").fadeIn(2000);
		});
		
		$('.thumb').blockify();
		
		$(".thumb").hover(
		  function () {
		    $(this).animate({ 
				backgroundPosition:"(0 -190px)"
			  }, 300 );
		  }, 
		  function () {
		    $(this).animate({ 
				backgroundPosition:"(0 0)"
			  }, 100 );
		  }
		);
		
		$(".thumbInner").hover(
		  function () {
		    $(this).children('.thumbLink').animate({ 
				height: "65px"
			  }, 300 );
		  }, 
		  function () {
		    $(this).children('.thumbLink').animate({ 
				height: "55px"
			  }, 100 );
		  }
		);
		
			$('#newsStories').jScrollPane({ scrollbarWidth: 10, scrollbarMargin: 10, showArrows: false, animateTo: true});

			$('#awardList').jScrollPane({ scrollbarWidth: 10, scrollbarMargin: 25, showArrows: false
		});

			/* $(document.location.hash).css("backgroundColor","#fffdbc").animate(
			{"backgroundColor": "white"
			},2000); */

			$('a.showExtended').click(function() { 
				$(this).parent().next(".extended").slideToggle();
				reinitialiseScrollPane();
				return false;
			});

			reinitialiseScrollPane = function()	{
				$('#newsStories').jScrollPane({ scrollbarWidth: 10, scrollbarMargin: 10, showArrows: false, animateTo: true});
			};
	
		$("label").inFieldLabels({ fadeOpacity:0 });
});

/*
 * In-Field Label jQuery Plugin
 * http://fuelyourcoding.com/scripts/infield.html
 *
 * Copyright (c) 2009 Doug Neiner
 * Dual licensed under the MIT and GPL licenses.
 * Uses the same license as jQuery, see:
 * http://docs.jquery.com/License
 *
 * @version 0.1
 */
(function($){$.InFieldLabels=function(b,c,d){var f=this;f.$label=$(b);f.label=b;f.$field=$(c);f.field=c;f.$label.data("InFieldLabels",f);f.showing=true;f.init=function(){f.options=$.extend({},$.InFieldLabels.defaultOptions,d);if(f.$field.val()!=""){f.$label.hide();f.showing=false};f.$field.focus(function(){f.fadeOnFocus()}).blur(function(){f.checkForEmpty(true)}).bind('keydown.infieldlabel',function(e){f.hideOnChange(e)}).change(function(e){f.checkForEmpty()}).bind('onPropertyChange',function(){f.checkForEmpty()})};f.fadeOnFocus=function(){if(f.showing){f.setOpacity(f.options.fadeOpacity)}};f.setOpacity=function(a){f.$label.stop().animate({opacity:a},f.options.fadeDuration);f.showing=(a>0.0)};f.checkForEmpty=function(a){if(f.$field.val()==""){f.prepForShow();f.setOpacity(a?1.0:f.options.fadeOpacity)}else{f.setOpacity(0.0)}};f.prepForShow=function(e){if(!f.showing){f.$label.css({opacity:0.0}).show();f.$field.bind('keydown.infieldlabel',function(e){f.hideOnChange(e)})}};f.hideOnChange=function(e){if((e.keyCode==16)||(e.keyCode==9))return;if(f.showing){f.$label.hide();f.showing=false};f.$field.unbind('keydown.infieldlabel')};f.init()};$.InFieldLabels.defaultOptions={fadeOpacity:0.5,fadeDuration:300};$.fn.inFieldLabels=function(c){return this.each(function(){var a=$(this).attr('for');if(!a)return;var b=$("input#"+a+"[type='text'],"+"input#"+a+"[type='password'],"+"textarea#"+a);if(b.length==0)return;(new $.InFieldLabels(this,b[0],c))})}})(jQuery);


/*!
* jQuery Blockify Plugin
* Copyright (c) 2010 Eli Dupuis
* Version: 0.3 (June 16, 2010)
* Dual licensed under the MIT (http://www.opensource.org/licenses/mit-license.php) and GPL (http://creativecommons.org/licenses/GPL/2.0/) licenses.
* Requires: jQuery v1.2 or later
*/

(function($) {

var ver = '0.3';

jQuery.fn.blockify = function(options) {

// iterate and reformat each matched element
return this.each(function() {
var $this = $(this);
var opts = $.extend({}, $.fn.blockify.defaults, options);

var elm = $this.find(opts.selector);

// exit if there's no link found-based on
if (elm.length < 1) return;

// if user option true, use mouse pointer on hover:
if (opts.cursor) $(this).css({cursor:opts.cursor});

// add hover class to element for custom styling
if (opts.hoverClass) {
$this.hover(function(){
$(this).addClass(opts.hoverClass);
},function(){
$(this).removeClass(opts.hoverClass);
});
};

$this.bind('click', function(e){
if (e.target.nodeName.toLowerCase() != 'a') {
// target is not a standard <a> link.

// make sure no text has been selected:
if($.fn.blockify.getSelectedText() == "") {
/*
tried to trigger click on elm here, but got stuck on recursion
equivalent to elm.click() would be ideal and we could get rid of externalClass crap
*/
if (elm.hasClass(opts.externalClass)) {
window.open(elm.attr('href'));
}else{
window.location = elm.attr('href');
};
};
};
});

});
};

// defaults
$.fn.blockify.defaults = {
selector: 'a:last', // selector to specific anchor (or other element), in case there's more than one!
cursor: 'pointer', // sets css cursor value. set to false to do nothing
hoverClass: 'hover', // class attached to element on hover
externalClass: 'ext' // if target anchor has this class, link will be opened in a new window
};

$.fn.blockify.getSelectedText = function(){
// borrowed from http://newism.com.au/blog/post/58/bigtarget-js-increasing-the-size-of-clickable-targets/
// prehaps look into a better way to do this...but maybe not :)
if(window.getSelection){
return window.getSelection().toString();
}
else if(document.getSelection){
return document.getSelection();
}
else if(document.selection){
return document.selection.createRange().text;
}


// http://stackoverflow.com/questions/1317727/get-selected-text-on-the-page-not-in-a-textarea-with-jquery
// var txt = '';
// if (window.getSelection) {
// txt = window.getSelection();
// } else if (document.getSelection) {
// txt = document.getSelection();
// } else if (document.selection) {
// txt = document.selection.createRange().text;
// } else return;
// document.aform.selectedtext.value = txt;
};

$.fn.blockify.ver = function() { return "jquery.blockify ver. " + ver; };

// end of closure
})(jQuery);

/*
 * jQuery Color Animations
 * Copyright 2007 John Resig
 * Released under the MIT and GPL licenses.
 */

(function(jQuery){

	// We override the animation for all of these color styles
	jQuery.each(['backgroundColor', 'borderBottomColor', 'borderLeftColor', 'borderRightColor', 'borderTopColor', 'color', 'outlineColor'], function(i,attr){
		jQuery.fx.step[attr] = function(fx){
			if ( fx.state == 0 ) {
				fx.start = getColor( fx.elem, attr );
				fx.end = getRGB( fx.end );
			}

			fx.elem.style[attr] = "rgb(" + [
				Math.max(Math.min( parseInt((fx.pos * (fx.end[0] - fx.start[0])) + fx.start[0]), 255), 0),
				Math.max(Math.min( parseInt((fx.pos * (fx.end[1] - fx.start[1])) + fx.start[1]), 255), 0),
				Math.max(Math.min( parseInt((fx.pos * (fx.end[2] - fx.start[2])) + fx.start[2]), 255), 0)
			].join(",") + ")";
		}
	});

	// Color Conversion functions from highlightFade
	// By Blair Mitchelmore
	// http://jquery.offput.ca/highlightFade/

	// Parse strings looking for color tuples [255,255,255]
	function getRGB(color) {
		var result;

		// Check if we're already dealing with an array of colors
		if ( color && color.constructor == Array && color.length == 3 )
			return color;

		// Look for rgb(num,num,num)
		if (result = /rgb\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*\)/.exec(color))
			return [parseInt(result[1]), parseInt(result[2]), parseInt(result[3])];

		// Look for rgb(num%,num%,num%)
		if (result = /rgb\(\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*\)/.exec(color))
			return [parseFloat(result[1])*2.55, parseFloat(result[2])*2.55, parseFloat(result[3])*2.55];

		// Look for #a0b1c2
		if (result = /#([a-fA-F0-9]{2})([a-fA-F0-9]{2})([a-fA-F0-9]{2})/.exec(color))
			return [parseInt(result[1],16), parseInt(result[2],16), parseInt(result[3],16)];

		// Look for #fff
		if (result = /#([a-fA-F0-9])([a-fA-F0-9])([a-fA-F0-9])/.exec(color))
			return [parseInt(result[1]+result[1],16), parseInt(result[2]+result[2],16), parseInt(result[3]+result[3],16)];

		// Otherwise, we're most likely dealing with a named color
		return colors[jQuery.trim(color).toLowerCase()];
	}
	
	function getColor(elem, attr) {
		var color;

		do {
			color = jQuery.curCSS(elem, attr);

			// Keep going until we find an element that has color, or we hit the body
			if ( color != '' && color != 'transparent' || jQuery.nodeName(elem, "body") )
				break; 

			attr = "backgroundColor";
		} while ( elem = elem.parentNode );

		return getRGB(color);
	};
	
	// Some named colors to work with
	// From Interface by Stefan Petre
	// http://interface.eyecon.ro/

	var colors = {
		aqua:[0,255,255],
		azure:[240,255,255],
		beige:[245,245,220],
		black:[0,0,0],
		blue:[0,0,255],
		brown:[165,42,42],
		cyan:[0,255,255],
		darkblue:[0,0,139],
		darkcyan:[0,139,139],
		darkgrey:[169,169,169],
		darkgreen:[0,100,0],
		darkkhaki:[189,183,107],
		darkmagenta:[139,0,139],
		darkolivegreen:[85,107,47],
		darkorange:[255,140,0],
		darkorchid:[153,50,204],
		darkred:[139,0,0],
		darksalmon:[233,150,122],
		darkviolet:[148,0,211],
		fuchsia:[255,0,255],
		gold:[255,215,0],
		green:[0,128,0],
		indigo:[75,0,130],
		khaki:[240,230,140],
		lightblue:[173,216,230],
		lightcyan:[224,255,255],
		lightgreen:[144,238,144],
		lightgrey:[211,211,211],
		lightpink:[255,182,193],
		lightyellow:[255,255,224],
		lime:[0,255,0],
		magenta:[255,0,255],
		maroon:[128,0,0],
		navy:[0,0,128],
		olive:[128,128,0],
		orange:[255,165,0],
		pink:[255,192,203],
		purple:[128,0,128],
		violet:[128,0,128],
		red:[255,0,0],
		silver:[192,192,192],
		white:[255,255,255],
		yellow:[255,255,0]
	};
	
})(jQuery);

