$(document).ready(function(){
					
		// IE 6 PNG FIX  - - - - - - - - - - - - - - - - - ->
		
		$('img[@src$=.png]').pngfix({ repeatMethod: "crop" });		
		
		// POPUPS - - - - - - - - - - - - - - - - - - - - - >
		$("a#email_popup").data("popup", {width:800,height:600});


		// ROLLOVERS - - - - - - - - - - - - - - - - - - - ->
			$(function(){
					// set up rollover
					$("img.rollover").hover(
						function()
						{
							this.src = this.src.replace("_up","_over");
						},
						function()
						{
							this.src = this.src.replace("_over","_up");
						}
					);
					});
					
		// SLIDESHOW - - - - - - - - - - - - - - - - - - - ->	

		$('ul#slides li').tsort({order:"rand"});
		
		
		$('ul#slides').innerfade({
						speed: 2000,
						timeout: 5000,
						type: 'sequence',
						containerheight: '612px'
					});	


});


