// functions


//Text replace
Cufon('h1')('h2')('.feed h3')('h4')('h5');

//Search Label
$(function() {
	$('label.search-label').labelOver('over');
});

//Video upload copy over
$(document).ready(function(){  
     $("input.same").click(function(){  
         if ($("input.same").is(':checked'))  
         {  
             // Checked, copy values  
             $("textarea#embed-copy").val($("textarea#embed").val());   
         }  
     });  
	 

});  

$(function() {
	$('#home-video').flash({
		src: 'mov/frontfeat.swf',
		width: 460,
		height: 258,
		wmode: "transparent"
	});
});



/**
 * Cookie plugin
 *
 * Copyright (c) 2006 Klaus Hartl (stilbuero.de)
 * Dual licensed under the MIT and GPL licenses:
 * http://www.opensource.org/licenses/mit-license.php
 * http://www.gnu.org/licenses/gpl.html
 *
 * http://www.stilbuero.de/2006/09/17/cookie-plugin-for-jquery/
 */
 
function createCookie(name,value,days) {
	if (days) {
		var date = new Date();
		date.setTime(date.getTime()+(days*24*60*60*1000));
		var expires = "; expires="+date.toGMTString();
	}
	else var expires = "";
	document.cookie = name+"="+value+expires+"; path=/";
}

function readCookie(name) {
	var nameEQ = name + "=";
	var ca = document.cookie.split(';');
	for(var i=0;i < ca.length;i++) {
		var c = ca[i];
		while (c.charAt(0)==' ') c = c.substring(1,c.length);
		if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);
	}
	return null;
}

function eraseCookie(name) {
	createCookie(name,"",-1);
}

