$(document).ready(function(){
	
	// Countries
	$('#countries').load('/countries.shtml').delegate('select', 'change', function() {
		location.href = $('select').val();
	});
	
	// Social media
	var pathname = window.location.pathname,
		title = $('h1').html();
		
	$('#facebook').append('<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.isitfriday.in' + pathname + '&amp;layout=button_count&amp;show_faces=false&amp;width=100&amp;action=like&amp;colorscheme=light&amp;height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:100px; height:21px;" allowTransparency="true"></iframe>');
	$('#twitter').append('<a href="http://twitter.com/share" class="twitter-share-button" data-count="horizontal">Tweet</a>');
	
	// Report a misspelling
	if($('#report').length > 0){
		var report = $('#report');
		report.append('<span>Report a misspelling</span>');
		
		report.find('span').click(function(){
			report.load('../report.shtml', function() {
				report.find('span').fadeOut().remove();
				report.find('form').fadeIn();
				report.find('input').first().focus();
			});
		});
	}
	
	//report.find('form').submit(function(){
		//report.find('form').fadeOut().remove();
	//});

});




