HTMLを読み込んですぐjQuery実行

[html]
$(document).ready(function(){
//ここにjQueryの命令を記述
})

//省力すると
$(function(){
//ここにjQueryの命令を記述
})

[/html]

jQuery