// InYouTube
// version 0.1 BETA!
// 2008-07-26
// Copyright (c) 2008, Suryakant Patidar
// Released under the GPL license
// http://www.gnu.org/copyleft/gpl.html
//
// --------------------------------------------------------------------
//
// This is a Greasemonkey user script.
//
// To install, you need Greasemonkey: http://greasemonkey.mozdev.org/
// Then restart Firefox and revisit this script.
// Under Tools, there will be a new menu item to "Install User Script".
// Accept the default configuration and install.
//
// To uninstall, go to Tools/Manage User Scripts,
// select "InYouTube", and click Uninstall.
//
// --------------------------------------------------------------------
//
// ==UserScript==
// @name          InYouTube
// @description   Redirect YouTube to In.YouTube for beloved IIIT 
// @include       http://youtube.com/*
// @include       http://www.youtube.com/*
// ==/UserScript==

(function() 
{
	if ( window.location.href.match(/www\.youtube\.com/i) )
	{
		window.location.href = window.location.href.replace(/www.youtube/, 'in.youtube');
	}
	else
	{	
		window.location.href = window.location.href.replace(/youtube/, 'in.youtube');
	}

})();


