(function($) {
	$.writeTitle = function(titleLocation) {
		var title = "Soundklan";
		
		if(typeof(window.parent.contentFrame)!='undefined') {
			var tmp = $.trim(window.parent.contentFrame.$('.breadcrumb a').html());
			if (tmp!=null && tmp!="") {
				title += ' | ' + tmp;
			}
			tmp = $.trim(window.parent.contentFrame.$('h1.name').html());
			if(tmp!=null && tmp!="") {
				title += ' | ' + tmp;
			}
			tmp = $.trim(window.parent.contentFrame.$('h2').html());
			if(tmp!=null && tmp!="") {
				title += ' | ' + tmp;
			}
		}
		
		if(typeof(titleLocation)!='undefined') {
			titleLocation.document.title = title;
		} else {
			window.document.title = title; 
		}
		
	}
})(jQuery);