// JavaScript Document
var minStay = 3;
$(document).ready(function() {
	
	//$(document).pngFix();

	$('a.link[title]').qtip( {
		style : {
			name : 'light',
			tip : 'topLeft',
			fontSize : '0.7em'
		},
		position : {
			target : 'mouse'
		}
	});

	$('div.result_image[title]').qtip( {
		style : {
			name : 'light',
			tip : 'topLeft',
			fontSize : '0.7em'

		},
		position : {
			target : 'mouse'
		}
	});

	$('div.image a[title]').qtip( {
		style : {
			name : 'light',
			tip : 'topLeft',
			fontSize : '0.7em'

		},
		position : {
			target : 'mouse'
		}
	});

	$('#random_posts').cycle( {
		fx : 'fade',
		speed : 2500,
		delay : 4000
	});
	
});