//cufon headings
Cufon.replace('.wrapper h1', {
	textShadow: '2px 2px #e5dbbe'
})('.footer h2');

    

$(document).ready(function(){


$('#rotation').cycle({ 
		timeout: 4000
});

//Init form styling
//$('.coupon form select').selectmenu();

$('.coupon form').jqTransform({imgPath:'img/form'});	
	
//Load in tweets

	$.getJSON("http://twitter.com/status/user_timeline/greensandgrille.json?count=1&callback=?",
		function(data){
			$.each(
				data, function(i,item){
					//create links to any urls or @replies in a tweet
					var new_text = item.text.replace(/((https?|s?ftp|ssh)\:\/\/[^"\s\<\>]*[^.,;'">\:\s\<\>\)\]\!])/g,
						function(url) {
							return '<a href="'+url+'">'+url+'</a>';
						}).replace(/\B@([_a-z0-9]+)/ig,
						function(reply) {
      						return  reply.charAt(0)+'<a href="http://twitter.com/'+reply.substring(1)+'">'+reply.substring(1)+'</a>';
    					});

					//push tweet to the page and make it clickable
					$('#tweet').html('<p>'+new_text+'</p>').click(function () { window.location = 'http://twitter.com/greensandgrille/status/'+item.id; });

				}
			)
		});


});
