$(document).ready(function(){
	$('.tablore').click(getLore);
	$('.tablore').css('cursor', 'pointer');
	
	$('.ticon').hover(ticonHover, ticonOff);
	
	$('.ticon').click(getSocialMedia);
	
	var mail_opt = {
		target: '.tabstore',
		dataType: 'json',
		success: mailSent
	}
	
	$('#maillist').ajaxForm(mail_opt);

});

function getLore(){
	location.href = NATIVE_ORIGIN+'/lore/';
}

function ticonHover(){
	$(this).css('position', 'relative');
	$(this).css('top', '0');
	$(this).animate({top: '8'}, 300);
}

function ticonOff(){
	$(this).animate({top: '0'}, 100);
}

function mailSent(responseText, statusText, xhr){
	if(responseText.flag == 1){
	$('.tabstore').html(responseText.msg);
	}else{ 
	$('.tabstore strong').html(responseText.msg);
	}
}

function getSocialMedia(){

	if($(this).attr('src') == NATIVE_ORIGIN+'/images/layout/icons/facebook_32.png'){
		$(location).attr('href', 'http://www.facebook.com/myopiamusic/');
	}else if($(this).attr('src') == NATIVE_ORIGIN+'/images/layout/icons/youtube_32.png'){
		$(location).attr('href', 'http://www.youtube.com/user/DeaconDesperado');
	}else if($(this).attr('src') == NATIVE_ORIGIN+'/images/layout/icons/myspace_32.png'){
		$(location).attr('href', 'http://www.myspace.com/myopia/');
	}else if($(this).attr('src') == NATIVE_ORIGIN+'/images/layout/icons/twitter_32.png'){
		$(location).attr('href', 'http://www.twitter.com/myopiametal/');
	}
}
