
	$(function(){  
/*
		================================================== 
		 Tablerows abwechselnd färben
		==================================================

		$("tr:even").addClass("even");
		$("tr:odd").addClass("odd");
*/


/*
		================================================== 
		 Tooltips
		==================================================
*/

		$('#wrapper a[href][title]').qtip({
			content: {
				text: false 
			},
			style: {
				name: 'cream', 
				border: {
					width: 1,
					radius: 2,
					color: '#f90'
				},
				fontSize: '1.2em',
				lineHeight: '1.2em',
				color: '#000',
				tip: { 
					corner: 'bottomMiddle',
					size: {
						x: 16, 
						y : 10 
					}
				},
				width: 300
			},
			position: {
				corner: {
					target: 'topMiddle',
					tooltip: 'bottomMiddle'
				}
			}

		});

/*
		================================================== 
		 Tablerow highlighten
		==================================================
*/

		$("table.paged tr").hover( 
			function(){
				$(this).addClass("rowhover");
			},
			function(){
				$(this).removeClass("rowhover");
			}
		)

/*
		================================================== 
		 Dummypasswort onFocus entfernen
		==================================================
*/
		$("input.dummyvalue").focus ( 
			function(){
				if($(this).val() == "1234567890") {
					$(this).val("");
				}
			}
		)
		
	});