/* infopunkt.tv javascript */


var ip={};


ip.inputs = function(){
	$('input[type=text],input[type=password]').each(function(){
		$(this).focus(function(){
			if($(this).val()==$(this).attr('defaultValue')) $(this).val('');
		}).blur(function(){
			if($.trim($(this).val())=='') $(this).val($(this).attr('defaultValue'));
		});
	});
};


ip.onready = function(){
	ip.inputs();		$('#najave a').tooltip({		track: true, delay: 0, showURL: false, showBody: " - ", fade: 250	});
};


ip.init = function(){
	$(document).ready(this.onready);
};


ip.init();

$(document).ready(function() {

var hideIt = null;

var hideTMM = function () {
  $('.tmm').slideUp().hide();
}

$('.tmm').hide();

$('.subscription').mouseover(
  function() {
    if (hideIt) clearTimeout(hideIt);
	var vidNum = $(this).attr('name').substring(3);
    $('.tellmemore_'+vidNum).slideDown().html('Pretplatom na 1, 3 ili 12 mjeseci dobivate puni pristup svim Infopunkt sadržajima kao i prava na korištenje istih.');
  }
);

$('.subscription').mouseout(
  function() {
    if (hideIt) clearTimeout(hideIt);
    hideIt = setTimeout(hideTMM, 1000);
    //
  }
);



$('.singleitem').mouseover(
  function() {
    if (hideIt) clearTimeout(hideIt);
	var vidNum = $(this).attr('name').substring(3);
    $('.tellmemore_'+vidNum).slideDown().html('Kupnjom pojedinog članka dobivate pristup svim video, foto i tekstualnim materijalima vezanim uz članak koji ste kupili.');
  }
);

$('.singleitem').mouseout(
  function() {
    if (hideIt) clearTimeout(hideIt);
    hideIt = setTimeout(hideTMM, 1000);
  }
);



});