

var PorletsHandler = {

	Intialize : function() {

		$('#content-portlets > .portlets').hover(
												 
			
			
			
				function() {
				$(this).addClass('open');
				},
				function() {
				$(this).removeClass('open');
				});
		}
	}
	

var ServiceHandler = {

	View : function(obj, ctr, strLocalize) {

			if($(obj).text() != "AYRINTILI BİLGİ")
			{	
				$(obj).text('AYRINTILI BİLGİ').css('width','150px');
				$('#' + ctr).css('display','block');	
			}
			else
			{
				$(obj).text(strLocalize).css('width','100px');
				$('#' + ctr).css('display','none');	
			}
	
			
		},
	
	Reset : function() {

		}
		
	}

