rth2011.com - information about domain
- Server Status: available
- Server IP: 94.247.98.63
- Server Response Time: 113ms
Site title
Rugby World Cup 2011
Alexa information
Alexa rank: 26,069,235
Rank Trend
Bounce Trend
DNS Information
| Host: | Class: | Type: | IP: | TTL: | Target: | Other: |
| rth2011.com | IN | TXT | 600 | |||
| rth2011.com | IN | MX | 600 | cluster4.us.messagelabs.com | pri: 10 | |
| rth2011.com | IN | MX | 600 | cluster4a.us.messagelabs.com | pri: 20 | |
| rth2011.com | IN | A | 94.247.98.63 | 600 | ||
| rth2011.com | IN | SOA | 3600 | mname: ns.domaincheck.co.uk rname: dns.domaincheck.co.uk serial: 2011072911 refresh: 7200 retry: 3600 expire: 604800 minimum-ttl: 3600 |
||
| rth2011.com | IN | NS | 600 | ns1.domaincheck.co.uk | ||
| rth2011.com | IN | NS | 600 | ns2.domaincheck.co.uk |
Server Location
Site source
Show / hide source
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=7" />
<title>Rugby World Cup 2011 </title>
<meta name="description" content="" />
<meta name="keywords" content="" />
<meta name="robots" content="index,follow" />
<link rel="stylesheet" type="text/css" media="screen" href="css/general.css" />
<!--[if IE 6]>
<link rel="stylesheet" media="screen, projection" href="css/ie6.css" />
<![endif]-->
<!--[if IE 7]>
<link rel="stylesheet" media="screen, projection" href="css/ie7.css" />
<![endif]-->
<script type="text/javascript" src="js/functions.js"></script>
<script type="text/javascript" src="js/swfobject.js"></script>
<script type="text/javascript" src="js/jquery-1.4.2.min.js"></script>
<script type="text/javascript" src="js/jquery-ui-1.8.custom.min.js"></script>
<script type="text/javascript" src="js/jquery.tablesorter.min.js"></script>
<script type="text/javascript" src="js/jquery.selectboxes.pack.js"></script>
<script type="text/javascript">
var flashvars = {};
flashvars.dateServerURL = "http://www.rth2011.com/GetNzTime.ashx";
flashvars.endDate = "2011, 8, 9, 19, 30, 0, 0";
flashvars.hourOffset = "1";
var params = {};
params.wmode = "transparent";
swfobject.embedSWF("swf/countdown.swf", "countdown", "220", "62", "9", false, flashvars, params );
var cItem = 0;
jQuery.fn.fadeIn = function(speed, callback) {
return this.animate({opacity: 'show'}, speed, function() {
if (jQuery.browser.msie)
this.style.removeAttribute('filter');
if (jQuery.isFunction(callback))
callback();
});
};
jQuery.fn.fadeOut = function(speed, callback) {
return this.animate({opacity: 'hide'}, speed, function() {
if (jQuery.browser.msie)
this.style.removeAttribute('filter');
if (jQuery.isFunction(callback))
callback();
});
};
jQuery.fn.fadeTo = function(speed,to,callback) {
return this.animate({opacity: to}, speed, function() {
if (to == 1 && jQuery.browser.msie)
this.style.removeAttribute('filter');
if (jQuery.isFunction(callback))
callback();
});
};
$(document).ready(function() {
if($('#schedule').length) {
/*
$.tablesorter.addWidget({
// give the widget a id
id: "repeatHeaders",
// format is called when the on init and when a sorting has finished
format: function(table) {
// cache and collect all TH headers
if(!this.headers) {
var h = this.headers = [];
$("thead th",table).each(function() {
h.push(
"" + $(this).text() + ""
);
});
}
// remove appended headers by classname.
$("tr.repated-header",table).remove();
// loop all tr elements and insert a copy of the "headers"
for(var i=0; i < table.tBodies[0].rows.length; i++) {
// insert a copy of the table head every 10th row
if((i%5) == 4) {
$("tbody tr:eq(" + i + ")",table).before(
$("").html(this.headers.join(""))
);
}
}
}
});
$("#schedule").tablesorter({
widgets: ['zebra','repeatHeaders']
});
*/
$("#schedule").tablesorter({
headers: {
0: { sorter: false },
1: { sorter: false },
2: { sorter: false },
3: { sorter: false },
4: { sorter: false },
5: { sorter: false }
}
});
function sortSelect(selectToSort) {
jQuery(selectToSort.options).sort(function(x,y){
return x.value > y.value ? 1 : -1;
});
}
$("form a").hide();
$("form a").click(function() {
$('select').val('0');
$("select").attr("disabled", false);
$("select").val("ALL");
$('tbody tr').fadeIn ();
$(this).hide();
});
// filter by Date
$('select.date').change( function(e) {
var letter = $(this).val();
$("select").attr("disabled","disabled");
$(this).attr("disabled", false);
$("form a").show();
if (letter === 'ALL') {
$('tbody tr').show ();
$("select").attr("disabled", false);
$("form a").hide();
}
else {
$('tbody tr').each( function(rowIdx,tr) {
$(this).fadeOut().find('td').each( function(idx, td) {
if( idx === 0) {
var check = $(this).text();
if (check && check === letter ) {
$(tr).fadeIn();
}
}
});
});
}
});
// filter by Pool
$('select.pool').change( function(e) {
var letter = $(this).val();
$("select").attr("disabled","disabled");
$(this).attr("disabled", false);
$("form a").show();
if (letter === 'ALL') {
$('tbody tr').fadeIn();
$("select").attr("disabled", false);
$("form a").hide();
}
else {
$('tbody tr').each( function(rowIdx,tr) {
$(this).fadeOut().find('td').each( function(idx, td) {
if( idx === 2) {
var check = $(this).text();
if (check && check.indexOf(letter) == 0) {
$(tr).fadeIn();
}
}
});
});
}
});
// filter by Team
$('select.team').change( function(e) {
var letter = $(this).val();
$("select").attr("disabled","disabled");
$(this).attr("disabled", false);
$("form a").show();
if (letter === 'ALL') {
$('tbody tr').fadeIn ();
$("select").attr("disabled", false);
$("form a").hide();
}
else {
$('tbody tr').each( function(rowIdx,tr) {
$(this).fadeOut().find('td').each( function(idx, td) {
if( idx === 3 || idx === 5) {
var check = $(this).html();
if (check && check.indexOf(letter) == 0 || check && check.indexOf(letter) > 0 ) {
$(tr).fadeIn();
}
}
});
});
}
});
/*
// filter by Location
$('select.location').change( function(e) {
var letter = $(this).val();
$("select").attr("disabled","disabled");
$(this).attr("disabled", false);
$("form a").show();
if (letter === 'ALL') {
$('tbody tr').fadeIn ();
$("select").attr("disabled", false);
$("form a").hide();
}
else {
$('tbody tr').each( function(rowIdx,tr) {
$(this).fadeOut().find('td').each( function(idx, td) {
if( idx === 6) {
var check = $(this).text();
if (check && check.indexOf(letter) == 0) {
$(tr).fadeIn();
}
}
});
});
}
});
*/
// filter by Venue
$('select.venue').change( function(e) {
var letter = $(this).val();
$("select").attr("disabled","disabled");
$(this).attr("disabled", false);
$("form a").show();
if (letter === 'ALL') {
$('tbody tr').fadeIn();
$("select").attr("disabled", false);
$("form a").hide();
}
else {
$('tbody tr').each( function(rowIdx,tr) {
$(this).fadeOut().find('td').each( function(idx, td) {
if( idx === 6) {
var check = $(this).text();
if (check && check.indexOf(letter) == 0) {
$(tr).fadeIn();
}
}
});
});
}
});
// ### Source content for date
var objDate = new Object();
$('#schedule tbody tr').each( function(rowIdx,tr) {
$(this).find('td').each( function(idx, td) {
if(idx === 0) {
var value = $(this).html();
objDate[value] = value;
}
});
});
delete objDate[""];
for(var i in objDate) {
$("select.date").get(0).options[$("select.date").get(0).options.length] = new Option(i, i);
}
//console.log(objDate);
// ### Source content for pool
var objPool = new Object();
$('#schedule tbody tr').each( function(rowIdx,tr) {
$(this).find('td').each( function(idx, td) {
if(idx === 2) {
var value = $(this).html();
objPool[value] = value;
}
});
});
delete objPool[""];
for(var i in objPool) {
$("select.pool").get(0).options[$("select.pool").get(0).options.length] = new Option(i, i);
$("select.pool").sortOptions();
}
//console.log(objPool);
// ### Source content for teams
var objTeam = new Object();
$('#schedule tbody tr').each( function(rowIdx,tr) {
$(this).find('td').each( function(idx, td) {
if(idx === 3 || idx === 5) {
var value = $(this).html();
objTeam[value] = value;
}
});
});
delete objTeam[""];
delete objTeam["W Pool A"];
delete objTeam["W Pool B"];
delete objTeam["W Pool C"];
delete objTeam["W Pool D"];
delete objTeam["RU Pool A"];
delete objTeam["RU Pool B"];
delete objTeam["RU Pool C"];
delete objTeam["RU Pool D"];
delete objTeam["W QF1"];
delete objTeam["W QF2"];
delete objTeam["W QF3"];
delete objTeam["W QF4"];
for(var i in objTeam) {
$("select.team").get(0).options[$("select.team").get(0).options.length] = new Option(i, i);
$("select.team").sortOptions();
}
$("select.team").get(0).options[$("select.team").get(0).options.length] = new Option("W Pool A", "W Pool A");
$("select.team").get(0).options[$("select.team").get(0).options.length] = new Option("W Pool B", "W Pool B");
$("select.team").get(0).options[$("select.team").get(0).options.length] = new Option("W Pool C", "W Pool C");
$("select.team").get(0).options[$("select.team").get(0).options.length] = new Option("W Pool D", "W Pool D");
$("select.team").get(0).options[$("select.team").get(0).options.length] = new Option("RU Pool A", "RU Pool A");
$("select.team").get(0).options[$("select.team").get(0).options.length] = new Option("RU Pool B", "RU Pool B");
$("select.team").get(0).options[$("select.team").get(0).options.length] = new Option("RU Pool C", "RU Pool C");
$("select.team").get(0).options[$("select.team").get(0).options.length] = new Option("RU Pool D", "RU Pool D");
$("select.team").get(0).options[$("select.team").get(0).options.length] = new Option("W QF1", "W QF1");
$("select.team").get(0).options[$("select.team").get(0).options.length] = new Option("W QF2", "W QF2");
$("select.team").get(0).options[$("select.team").get(0).options.length] = new Option("W QF3", "W QF3");
$("select.team").get(0).options[$("select.team").get(0).options.length] = new Option("W QF4", "W QF4");
//console.log(objTeam);
/*
// ### Source content for locations
var objLocation = new Object();
$('#schedule tbody tr').each( function(rowIdx,tr) {
$(this).find('td').each( function(idx, td) {
if(idx === 6) {
var value = $(this).html();
objLocation[value] = value;
}
});
});
delete objLocation[""];
for(var i in objLocation) {
$("select.location").get(0).options[$("select.location").get(0).options.length] = new Option(i, i);
$("select.location").sortOptions();
}
//console.log(objLocation);
*/
// ### Source content for venues
var objVenue = new Object();
$('#schedule tbody tr').each( function(rowIdx,tr) {
$(this).find('td').each( function(idx, td) {
if(idx === 6) {
if ($(this).children().size() > 0) {
var value = $(this).children().html();
//console.log($(this).children().html());
}
else {
var value = $(this).html();
}
objVenue[value] = value;
}
});
});
delete objVenue[""];
for(var i in objVenue) {
$("select.venue").get(0).options[$("select.venue").get(0).options.length] = new Option(i, i);
$("select.venue").sortOptions();
}
//console.log(objVenue);
}
// ### RSS feed fader
if($('#rssFeedResults').length) {
$.get('/getrss.asp?count=5', function(data) {
$('#rssFeedResults').html(data);
$('.rssfeed ul li').each( function() {
$('#rssFeedResults').append( $(this).children('a') );
//console.log($(this));
});
$('.rssfeed').remove();
//console.log('Load was performed.');
fadeItem();
});
}
});
function fadeItem() {
var rss_items = $('#rssFeedResults a').length;
if (cItem >= rss_items) {
cItem = 0;
}
$('#rssFeedResults a').hide();
$('#rssFeedResults a').css({ 'margin-left' : '600px' });
/*
$('#rssFeedResults a:hidden').eq(cItem).css({ 'display' : 'block' }).fadeIn(3000, function() {
//console.log('fadeitem - ' +cItem);
});
*/
$('#rssFeedResults a:hidden').eq(cItem).css({ 'display' : 'block'}, function() { $(this).fadeIn(3000); }).animate({'margin-left' : '0px', opacity : 1.00}, 3000, "easeOutExpo", function() {
//console.log(cItem);
$(this).delay(5000).fadeOut(300, function() {
fadeItem();
});
});
cItem++;
}
</script>
<style type="text/css">
body {
}
#rssFeedResults {
height: 35px;
display: block;
padding-left: 35px;
padding-top: 4px;
background: #FFF url("gfx/rss_feed_icon.jpg") top left no-repeat;
text-shadow: none;
overflow: hidden;
}
#rssFeedResults a {
background: #FFF;
margin-left: 600px;
width: 445px;
display: block;
}
table#schedule {
font-family:arial;
font-size:8pt;
margin:10px 0 15px;
text-align:left;
width:100%;
}
table#schedule thead tr th, table#schedule tfoot tr th {
background-color:#009c3b;
color: #FFF;
text-transform: uppercase;
border:1px solid #FFFFFF;
font-size:8pt;
padding:4px;
height: 20px;
}
table#schedule thead tr .header {
background-image:url("bg.gif");
background-position:right center;
background-repeat:no-repeat;
cursor:pointer;
}
table#schedule tbody th {
background-color: #999;
color: #FFF;
font-weight: bold;
padding:4px;
vertical-align:top;
}
table#schedule tbody td {
color:#3D3D3D;
padding:4px;
vertical-align:top;
}
table#schedule tbody td.team1 {
border-right: 0;
}
table#schedule tbody td.pool {
color: #FFF;
font-weight: bold;
}
table#schedule tbody td.team2 {
border-left: 0;
}
table#schedule tbody td {
color:#3D3D3D;
padding:4px;
vertical-align:top;
}
table#schedule tbody tr.odd {
background-color:#f5f5f5;
}
table#schedule thead tr .headerSortUp {
background-image:url("asc.gif");
}
table#schedule thead tr .headerSortDown {
background-image:url("desc.gif");
}
table#schedule thead tr .headerSortDown, table#schedule thead tr .headerSortUp {
background-color:#8DBDD8;
}
</style>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(
['_setAccount', 'UA-17705757-1'],
['_trackDownload'], // This is where gaAddons calls go
['_trackOutbound'], // Showing three basic calls
['_trackMailTo', { // Sample call overwritting some defaults
onBounce:false, // - Do not track if the page is a bounce
category:'email' // - Change the event label
}],
['_trackPageview']
);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
<script type="text/javascript" src="/js/gaAddons-2.1.0.min.js"></script>
</head>
<body>
<div class="pageContainer">
<div class="header">
<div class="rthLogo"><img src="gfx/rthLogo.png" alt="Rugby Travel & Hospitality" title="Rugby Travel & Hospitality" /></div>
<div class="rugbyLogo"><img src="gfx/rugby2011Logo.png" alt="Rugby World Cup 2011. Travel & Hospitality" title="Rugby World Cup 2011. Travel & Hospitality" /></div>
<div id="countdown"></div>
</div>
<div class="contentPanel">
<div class="contentPanelTop"> </div>
<div class="contentPanelMiddle">
<div class="mainNavigation">
<div class="mainNavigationTop"> </div>
<div class="mainNavigationMiddle">
<ul>
<li class="mainItem active "><a href="default.htm" title="Rugby World Cup 2011" target="_self" class="active">Rugby World Cup 2011</a></li>
</ul>
</div>
<div class="mainNavigationBottom"> </div>
</div>
<div class="content">
<div class="subpageMainImageAndPlaceholders">
<div class="subpageMainImageContainer">
<script language="JavaScript" type="text/javascript">
//<![CDATA[
var flashvars = {};
flashvars.skin = 'flash/flvSkin.swf';
flashvars.content = 'flash_xml/videos_home.xml';
flashvars.playBtnOffsetY = 'true';
var params = {};
params.scale = "noScale";
params.allowfullscreen = "true";
params.wmode = "transparent";
swfobject.embedSWF("flash/videoplayer_01.swf", "flashContent", "490", "305", "10", false, flashvars, params );
swfobject.createCSS(".subpageMainImageContainer","margin-left:-2px");
//]]>
</script>
<div id="flashContent">
<img src='http://rth-web.stage.i-publish.ibltd.com/flash/video_content/EdenParkVideoStill.jpg' />
<p>This content requires <a href="http://get.adobe.com/flashplayer">Flash player</a> version 10 to be installed on your computer.</p>
</div>
</div>
<div class="horizontalPlaceholder">
<div class="horizontalPlaceholderTop"> </div>
<div class="horizontalPlaceholderMiddle">
<div class="horizontalPlaceholderMiddleImage"><a href="About_us.htm">About Rugby Travel & Hospitality </a>
</div>
<div class="horizontalPlaceholderMiddleInfo">
<div class="horizontalPlaceholderMiddleText"><p>Rugby Travel and Hospitality was the company appointed by Rugby World Cup Ltd to exclusively create, manage and implement the Official Hospitality Programme for Rugby World Cup 2011. </p></div>
<div class="horizontalPlaceholderMiddleMoreLink"><a href="About_us.htm">More >></a></div>
</div>
</div>
<div class="horizontalPlaceholderBottom"> </div>
</div>
<div class="horizontalPlaceholder">
<div class="horizontalPlaceholderTop"> </div>
<div class="horizontalPlaceholderMiddle">
<div class="horizontalPlaceholderMiddleImage"><a href="contact_us.htm">Contact RTH</a>
</div>
<div class="horizontalPlaceholderMiddleInfo">
<div class="horizontalPlaceholderMiddleText"><p>Contact information for Rugby Travel & Hospitality </p></div>
<div class="horizontalPlaceholderMiddleMoreLink"><a href="contact_us.htm">More >></a></div>
</div>
</div>
<div class="horizontalPlaceholderBottom"> </div>
</div>
</div>
<div class="subpageTextContainer">
<div class="textBoxContent">
<div class="textBoxContentTop"></div>
<div class="textBoxContentMid">
<div class="column1Title">
<h1>Rugby World Cup 2011 </h1>
</div>
<div class="summaryText">
<span>
<p>Rugby World Cup 2011 Travel & Hospitality Programme exceeds expectations</p>
</span>
</div><div class="mainText">
<p>Rugby Travel & Hospitality (RTH) is delighted to have delivered a highly successful Travel and Hospitality Programme for Rugby World Cup 2011. </p>
<p>The Official Travel Programme exceeded all forecasts, with more than 30,000 international visitors travelling to New Zealand to experience the Tournament. </p>
<p>The Official Hospitality Programme also enjoyed immense success, with the flagship venue, Eden Park Pavilion, setting a new standard in hospitality in New Zealand. </p>
<p>RTH has been re-appointed to exclusively manage the Official Travel and Hospitality Programmes for the next two Rugby World Cups, in England 2015 and Japan 2019. More information about Official Travel and Hospitality Packages for RWC 2015, England will be available in due course. </p>
</div>
</div>
<div class="textBoxContentBot"></div>
</div>
</div>
</div>
<div class="clear"> </div>
</div>
<div class="contentPanelBottom"> </div>
</div>
<div class="footerNavigation">
<ul>
<li><a href="site_map.htm" alt="Site Map" title="Site Map">Site Map</a></li>
<li><a href="Privacy_Policy.htm" alt="Privacy Policy" title="Privacy Policy">Privacy Policy</a></li>
<li id="footerNavigationLastItem"><a href="Terms_and_Conditions.htm" alt="Terms & Conditions" title="Terms & Conditions">Terms & Conditions</a></li>
</ul>
</div>
<div class="copyrightStatement">TM © Rugby World Cup Limited 2008. © 2012 Rugby Travel and Hospitality (NZ) Ltd</div>
</div>
<div class="clear"> </div>
</body>
</html>