
/**********************************************************************/
/*                                                                    */ 
/* This script contains functions and variables which are used for    */
/* the TV1000 campaign                                                */
/*                                                                    */ 
/**********************************************************************/
$(document).ready( CampaignThisHeroInit );
function CampaignThisHeroInit() {
 CampaignThisHero.Init();
}
var CampaignThisHero = {
 Init : function() {
  // Fix the links for the channels
  $('#campaign_hero div.campaign_channels_nav a').each(function(i) {
	$(this).click(function() {
	CampaignThisHero.openChannelDetails( this.href+"" );
	return false;
	});
	$(this).smart_modal();
  });
 },
 
  /* open up tv channel details with the means of ajax */
openChannelDetails: function(link) {
$.post(link,
function(html) {
	$('#sm_content').html(html);
	$('.popup').mouseover(function(){
	$(this).smart_modal();
	});
$('.sm_close').click(function(){
	$('#sm_content').remove();
	$('#sm_olay').remove();
})
});
return false;
} 
}