$(document).ready(function() {
	smallerTable();
	generateIcons(window.location);
	var counter = 0;
	$(".csc-textpic-image img").each(function(){
		//alert("found");
		if ($(this).width() > 500) {
			var img_src = $(this).attr("src");
			var what = '<div class="image-border" id="img-' + counter + '"><img src="/fileadmin/img/img-border.png" /></div>';
			var bgstr = '#fff url(' + img_src + ') no-repeat center center';
			$(this).parent().append(what);
			$(this).css("display","none");
			$(this).siblings(".image-border").css("background",bgstr);
			counter++;
		}
	});
});

function generateIcons(url) {
	$('#contentCenter h2:first').css('margin-left',30);
	$('<div id="icon-profile"><img src="fileadmin/img/design/icons/farmer_detail.png" alt="Profil" /></div>').insertBefore('#contentCenter h2:first');
	$('<div id="icon-box"></div>').insertAfter('#contentCenter h2:first');

	if ($('#profile-header-interview').length > 0) {
		$('#icon-box').append('<a href="'+url+'#Interview"><img src="fileadmin/img/design/icons/interview.png" alt="Interview" border="0" /></a>');
		//alert("interview found, insert icon");
	}
	if ($('#profile-header-fotos').length > 0) {
		$('#icon-box').append('<a href="'+url+'#Fotos"><img src="fileadmin/img/design/icons/photos.png" alt="Fotos" border="0" /></a>');
	}
	if ($('#profile-header-video').length > 0) {
		$('#icon-box').append('<a href="'+url+'#Videos"><img src="fileadmin/img/design/icons/videos.png" alt="Videos" border="0" /></a>');
	}
}

function smallerTable() {
	$('#contentCenter .contenttable-1').width(540).css('margin-left',30);
}
