$(document).ready(function(){
	if ($.browser.msie) {
		$(".topNavZone a").mouseover(function(){
			$(this).parent().addClass("topNavHover");
		});
		$(".topNavZone a").mouseout(function(){
			$(this).parent().removeClass("topNavHover");
		});
	};
	
	$("#s").focus(function(){
		value = $(this).attr('value');
		if (value == 'Type your keywords here') {
			$(this).attr('value','');
		}
	});
	
	$("#s").blur(function(){
		value = $(this).attr('value');
		if (value == '') {
			$(this).attr('value','Type your keywords here');
		}
	});
	
	$(".commentlist li").mouseover(function(){
		$(this).addClass('commentHover');
	});	
	
	$(".commentlist li").mouseout(function(){
		$(this).removeClass('commentHover');
	});
	
	$('#lastfm ul').lastFM({
        username: 'mrnhim',
        apikey: 'b25b959554ed76058ac220b7b2e0a026',
        number: 5,
        onComplete: function(){}
    });

	$('#tumblelog ul').tumblr({
        username: 'mrnhim',
        num: 5,
		onComplete: function(){}
    });
	
});